aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer
diff options
context:
space:
mode:
authorJeremy Kolb <[email protected]>2020-04-19 20:15:49 +0100
committerJeremy Kolb <[email protected]>2020-04-19 20:15:49 +0100
commitd7f3d858add197f91969c69b1d4a14dbcb801f03 (patch)
tree87de3a5aeb55aabd3bd14ba7132d69751db0bb24 /crates/rust-analyzer
parent24af351018f2aeb11a2fb8cabb551798a5ab695e (diff)
Some clippy fixes
Diffstat (limited to 'crates/rust-analyzer')
-rw-r--r--crates/rust-analyzer/src/world.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/world.rs b/crates/rust-analyzer/src/world.rs
index f2ad453fa..369578fb6 100644
--- a/crates/rust-analyzer/src/world.rs
+++ b/crates/rust-analyzer/src/world.rs
@@ -184,7 +184,7 @@ impl WorldState {
184 let mut analysis_host = AnalysisHost::new(lru_capacity); 184 let mut analysis_host = AnalysisHost::new(lru_capacity);
185 analysis_host.apply_change(change); 185 analysis_host.apply_change(change);
186 WorldState { 186 WorldState {
187 config: config, 187 config,
188 roots: folder_roots, 188 roots: folder_roots,
189 workspaces: Arc::new(workspaces), 189 workspaces: Arc::new(workspaces),
190 analysis_host, 190 analysis_host,