about summary refs log tree commit diff
path: root/compiler/rustc_expand/src/expand.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2025-04-10 09:39:21 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2025-04-10 09:39:21 +1000
commit663a317c20652b9226350b6dde3aeee32532aaec (patch)
treebe3b772badf674a63ea02ab46e543f104a763677 /compiler/rustc_expand/src/expand.rs
parent1b3fc585cb48c71dbaf1677af6d6698977b436cd (diff)
downloadrust-663a317c20652b9226350b6dde3aeee32532aaec.tar.gz
rust-663a317c20652b9226350b6dde3aeee32532aaec.zip
Address review comments.
Diffstat (limited to 'compiler/rustc_expand/src/expand.rs')
-rw-r--r--compiler/rustc_expand/src/expand.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_expand/src/expand.rs b/compiler/rustc_expand/src/expand.rs
index 4a5b7b91706..1b539477d51 100644
--- a/compiler/rustc_expand/src/expand.rs
+++ b/compiler/rustc_expand/src/expand.rs
@@ -1169,7 +1169,7 @@ trait InvocationCollectorNode: HasAttrs + HasNodeId + Sized {
         collector.cx.dcx().emit_err(RemoveNodeNotSupported { span, descr: Self::descr() });
     }
 
-    /// All of the idents (items) declared by this node.
+    /// All of the identifiers (items) declared by this node.
     /// This is an approximation and should only be used for diagnostics.
     fn declared_idents(&self) -> Vec<Ident> {
         vec![]