Skip to content

Commit 73590f0

Browse files
Fix format
1 parent a068ced commit 73590f0

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

crates/ide_completion/src/completions/postfix.rs

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -180,15 +180,8 @@ pub(crate) fn complete_postfix(acc: &mut Completions, ctx: &CompletionContext) {
180180
)
181181
.add_to(acc);
182182

183-
postfix_snippet(
184-
ctx,
185-
cap,
186-
&dot_receiver,
187-
"ok",
188-
"Ok(expr)",
189-
&format!("Ok({})", receiver_text),
190-
)
191-
.add_to(acc);
183+
postfix_snippet(ctx, cap, &dot_receiver, "ok", "Ok(expr)", &format!("Ok({})", receiver_text))
184+
.add_to(acc);
192185

193186
postfix_snippet(
194187
ctx,

0 commit comments

Comments
 (0)