Unnamed repository; edit this file 'description' to name the repository.
wording
Anatol Ulrich 2021-10-27
parent 3f82989 · commit 04f2eb0
-rw-r--r--crates/ide/src/expand_macro.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/expand_macro.rs b/crates/ide/src/expand_macro.rs
index fd9d1ff456..8feaa3b7be 100644
--- a/crates/ide/src/expand_macro.rs
+++ b/crates/ide/src/expand_macro.rs
@@ -33,7 +33,7 @@ pub(crate) fn expand_macro(db: &RootDatabase, position: FilePosition) -> Option<
})?;
// due to how Rust Analyzer works internally, we need to special case derive attributes,
- // otherwise they might not get found, e.g. here only `#[attr]` would expand:
+ // otherwise they might not get found, e.g. here with the cursor at $0 `#[attr]` would expand:
// ```
// #[attr]
// #[derive($0Foo)]