diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 0504e889ea10b..86571f921f03a 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -1927,7 +1927,7 @@ pub enum ItemKind { /// /// E.g. `trait Foo { .. }` or `trait Foo { .. }` Trait(Unsafety, Generics, TyParamBounds, Vec), - // Default trait implementation. + /// Auto trait implementation. /// /// E.g. `impl Trait for .. {}` or `impl Trait for .. {}` DefaultImpl(Unsafety, TraitRef),