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 75676eb commit 5356a8bCopy full SHA for 5356a8b
crates/ide/src/file_structure.rs
@@ -160,9 +160,9 @@ fn structure_node(node: &SyntaxNode) -> Option<StructureNode> {
160
let label = match target_trait {
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(),
+ format!("impl {}{} for {}",
+ it.excl_token().map(|x| x.to_string()).unwrap_or_default(),
+ t.syntax().text(),
166
target_type.syntax().text(),
167
)
168
}
0 commit comments