Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit d044bc3

Browse files
committed
Format code
1 parent d5fb7a4 commit d044bc3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/ide-completion/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub struct CompletionConfig {
1919
pub insert_use: InsertUseConfig,
2020
pub prefer_no_std: bool,
2121
pub snippets: Vec<Snippet>,
22-
pub limit: Option<usize>
22+
pub limit: Option<usize>,
2323
}
2424

2525
#[derive(Clone, Debug, PartialEq, Eq)]

crates/rust-analyzer/src/integrated_benchmarks.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ fn integrated_completion_benchmark() {
146146
},
147147
snippets: Vec::new(),
148148
prefer_no_std: false,
149-
limit: None
149+
limit: None,
150150
};
151151
let position =
152152
FilePosition { file_id, offset: TextSize::try_from(completion_offset).unwrap() };
@@ -185,7 +185,7 @@ fn integrated_completion_benchmark() {
185185
},
186186
snippets: Vec::new(),
187187
prefer_no_std: false,
188-
limit: None
188+
limit: None,
189189
};
190190
let position =
191191
FilePosition { file_id, offset: TextSize::try_from(completion_offset).unwrap() };

0 commit comments

Comments
 (0)