Skip to content

Commit 5356a8b

Browse files
committed
trim trailing whitespaces (#14044)
1 parent 75676eb commit 5356a8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/ide/src/file_structure.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,9 @@ fn structure_node(node: &SyntaxNode) -> Option<StructureNode> {
160160
let label = match target_trait {
161161
None => format!("impl {}", target_type.syntax().text()),
162162
Some(t) => {
163-
format!("impl {}{} for {}",
164-
it.excl_token().map(|x| x.to_string()).unwrap_or_default(),
165-
t.syntax().text(),
163+
format!("impl {}{} for {}",
164+
it.excl_token().map(|x| x.to_string()).unwrap_or_default(),
165+
t.syntax().text(),
166166
target_type.syntax().text(),
167167
)
168168
}

0 commit comments

Comments
 (0)