diff --git a/src/librustc/ty/mod.rs b/src/librustc/ty/mod.rs index 978a8aa0fff..c9ae3b3df02 100644 --- a/src/librustc/ty/mod.rs +++ b/src/librustc/ty/mod.rs @@ -204,7 +204,7 @@ impl AssociatedItem { match self.kind { AssociatedKind::Const => true, AssociatedKind::Type => true, - // TODO(canndrew): Be more thorough here, check if any argument is uninhabited. + // FIXME(canndrew): Be more thorough here, check if any argument is uninhabited. AssociatedKind::Method => !self.method_has_self_argument, } }