From fc5e8dc1b5dd6a81d92e6981d7689f81b108c5c3 Mon Sep 17 00:00:00 2001 From: Alex Burka Date: Mon, 2 Oct 2017 07:30:09 -0400 Subject: [PATCH] fix comment on DefaultImpl --- src/libsyntax/ast.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 4bf37302c8d..86571f921f0 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -1927,9 +1927,9 @@ pub enum ItemKind { /// /// E.g. `trait Foo { .. }` or `trait Foo { .. }` Trait(Unsafety, Generics, TyParamBounds, Vec), - /// Default trait implementation. + /// Auto trait implementation. /// - /// E.g. `default impl Trait for .. {}` or `default impl Trait for .. {}` + /// E.g. `impl Trait for .. {}` or `impl Trait for .. {}` DefaultImpl(Unsafety, TraitRef), /// An implementation. ///