We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28b7460 commit 75676ebCopy full SHA for 75676eb
crates/ide/src/file_structure.rs
@@ -161,9 +161,10 @@ fn structure_node(node: &SyntaxNode) -> Option<StructureNode> {
161
None => format!("impl {}", target_type.syntax().text()),
162
Some(t) => {
163
format!("impl {}{} for {}",
164
- it.excl_token().map(|x| x.to_string()).unwrap_or_default(),
165
- t.syntax().text(),
166
- target_type.syntax().text(),)
+ it.excl_token().map(|x| x.to_string()).unwrap_or_default(),
+ t.syntax().text(),
+ target_type.syntax().text(),
167
+ )
168
}
169
};
170
0 commit comments