ast: tweak AssocItemKind::Macro comment

This commit is contained in:
Mazdak Farrokhzad 2020-02-15 22:36:03 +01:00
parent fe62bed73b
commit f12ae4ac60

View file

@ -2637,6 +2637,6 @@ pub enum AssocItemKind {
Fn(FnSig, Generics, Option<P<Block>>),
/// A type.
TyAlias(Generics, GenericBounds, Option<P<Ty>>),
/// A macro expanding to an item.
/// A macro expanding to items.
Macro(Mac),
}