about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-02-15 22:36:03 +0100
committerMazdak Farrokhzad <twingoow@gmail.com>2020-02-15 22:36:03 +0100
commitf12ae4ac608362264470eda9b1d67236bae62040 (patch)
treef4c11bb660d8f55168d9c0d9a354b8a8a5ec81db
parentfe62bed73b0ef9fe63faa2a56653f3c7fa17f7c2 (diff)
downloadrust-f12ae4ac608362264470eda9b1d67236bae62040.tar.gz
rust-f12ae4ac608362264470eda9b1d67236bae62040.zip
ast: tweak AssocItemKind::Macro comment
-rw-r--r--src/libsyntax/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index a931d8c27ba..8154ae2f307 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -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),
 }