Skip to content

Commit 0902094

Browse files
committed
fix: the lines are formatted according to clippy
1 parent 82edbbc commit 0902094

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/ide/src/references.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! - `(` for tuple structs/variants
1616
//! - `;` for unit structs
1717
//! - The type name in a struct/enum/variant definition
18-
//! Then only constructor/initialization usages will be shown, filtering out other references.
18+
//! Then only constructor/initialization usages will be shown, filtering out other references.
1919
2020
use hir::{PathResolution, Semantics};
2121
use ide_db::{
@@ -105,7 +105,7 @@ pub struct Declaration {
105105
/// - `(` after tuple struct/variant: Shows tuple literal initializations
106106
/// - `;` after unit struct: Shows unit literal initializations
107107
/// - Type name in definition: Shows all initialization usages
108-
/// In these cases, other kinds of references (like type references) are filtered out.
108+
/// In these cases, other kinds of references (like type references) are filtered out.
109109
pub(crate) fn find_all_refs(
110110
sema: &Semantics<'_, RootDatabase>,
111111
position: FilePosition,

0 commit comments

Comments
 (0)