about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvremyavnikuda <andrew.nevsky@yandex.ru>2025-05-25 15:55:58 +0700
committervremyavnikuda <andrew.nevsky@yandex.ru>2025-05-26 16:00:45 +0700
commit693ff34702c2eb06bca073f2f7d3073da36c297b (patch)
tree276c36cabb474b3b5f2faede44b52094b41b0ed2 /src
parent1e8eacd192022cd0bd8c90101569b32397722122 (diff)
downloadrust-693ff34702c2eb06bca073f2f7d3073da36c297b.tar.gz
rust-693ff34702c2eb06bca073f2f7d3073da36c297b.zip
fix: the lines are formatted according to clippy
Diffstat (limited to 'src')
-rw-r--r--src/tools/rust-analyzer/crates/ide/src/references.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/ide/src/references.rs b/src/tools/rust-analyzer/crates/ide/src/references.rs
index f7f00cf8317..d9882d12210 100644
--- a/src/tools/rust-analyzer/crates/ide/src/references.rs
+++ b/src/tools/rust-analyzer/crates/ide/src/references.rs
@@ -105,7 +105,7 @@ pub struct Declaration {
 /// - `(` after tuple struct/variant: Shows tuple literal initializations
 /// - `;` after unit struct: Shows unit literal initializations
 /// - Type name in definition: Shows all initialization usages
-///   In these cases, other kinds of references (like type references) are filtered out.
+///  In these cases, other kinds of references (like type references) are filtered out.
 pub(crate) fn find_all_refs(
     sema: &Semantics<'_, RootDatabase>,
     position: FilePosition,