diff options
-rw-r--r-- | crates/rust-analyzer/src/main_loop.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs index b3d4c6ec5..6ea775d68 100644 --- a/crates/rust-analyzer/src/main_loop.rs +++ b/crates/rust-analyzer/src/main_loop.rs | |||
@@ -248,7 +248,7 @@ impl GlobalState { | |||
248 | } | 248 | } |
249 | }; | 249 | }; |
250 | 250 | ||
251 | self.report_progress("fetching", state, msg, None); | 251 | self.report_progress("Fetching", state, msg, None); |
252 | } | 252 | } |
253 | Task::FetchBuildData(progress) => { | 253 | Task::FetchBuildData(progress) => { |
254 | let (state, msg) = match progress { | 254 | let (state, msg) = match progress { |
@@ -266,7 +266,7 @@ impl GlobalState { | |||
266 | }; | 266 | }; |
267 | 267 | ||
268 | if let Some(state) = state { | 268 | if let Some(state) = state { |
269 | self.report_progress("loading", state, msg, None); | 269 | self.report_progress("Loading", state, msg, None); |
270 | } | 270 | } |
271 | } | 271 | } |
272 | } | 272 | } |
@@ -298,7 +298,7 @@ impl GlobalState { | |||
298 | } | 298 | } |
299 | }; | 299 | }; |
300 | 300 | ||
301 | self.report_progress("indexing", state, message, Some(fraction)); | 301 | self.report_progress("Indexing", state, message, Some(fraction)); |
302 | } | 302 | } |
303 | } | 303 | } |
304 | Event::Vfs(mut task) => { | 304 | Event::Vfs(mut task) => { |
@@ -330,7 +330,7 @@ impl GlobalState { | |||
330 | Progress::End | 330 | Progress::End |
331 | }; | 331 | }; |
332 | self.report_progress( | 332 | self.report_progress( |
333 | "roots scanned", | 333 | "Roots Scanned", |
334 | state, | 334 | state, |
335 | Some(format!("{}/{}", n_done, n_total)), | 335 | Some(format!("{}/{}", n_done, n_total)), |
336 | Some(Progress::fraction(n_done, n_total)), | 336 | Some(Progress::fraction(n_done, n_total)), |