Skip to content

Commit

Permalink
Update completions.rs
Browse files Browse the repository at this point in the history
Added the closing brace as required.issue starkware-libs#5935
  • Loading branch information
kaksv committed Jul 11, 2024
1 parent d1b9097 commit 1e8e5ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ fn completion_for_method(

let completion = CompletionItem {
label: format!("{}()", name),
insert_text: Some(format!("{}(", name)),
insert_text: Some(format!("{}(", name))),
detail: Some(detail),
kind: Some(CompletionItemKind::METHOD),
additional_text_edits: Some(additional_text_edits),
Expand Down

0 comments on commit 1e8e5ff

Please sign in to comment.