Skip to content

Commit b04c4e7

Browse files
committed
formatting
1 parent e299fd5 commit b04c4e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/ide_assists/src/handlers/add_turbo_fish.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ pub(crate) fn add_turbo_fish(acc: &mut Assists, ctx: &AssistContext) -> Option<(
8989
Some(cap) => {
9090
let snip = format!("::<${{0:{}}}>", fish_head);
9191
builder.insert_snippet(cap, ident.text_range().end(), snip)
92-
},
92+
}
9393
None => {
9494
let snip = format!("::<{}>", fish_head);
9595
builder.insert(ident.text_range().end(), snip);
96-
},
96+
}
9797
},
9898
)
9999
}

0 commit comments

Comments
 (0)