Skip to content

Commit 75676eb

Browse files
Update crates/ide/src/file_structure.rs
Co-authored-by: Jonas Schievink <[email protected]>
1 parent 28b7460 commit 75676eb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

crates/ide/src/file_structure.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,10 @@ fn structure_node(node: &SyntaxNode) -> Option<StructureNode> {
161161
None => format!("impl {}", target_type.syntax().text()),
162162
Some(t) => {
163163
format!("impl {}{} for {}",
164-
it.excl_token().map(|x| x.to_string()).unwrap_or_default(),
165-
t.syntax().text(),
166-
target_type.syntax().text(),)
164+
it.excl_token().map(|x| x.to_string()).unwrap_or_default(),
165+
t.syntax().text(),
166+
target_type.syntax().text(),
167+
)
167168
}
168169
};
169170

0 commit comments

Comments
 (0)