From 2fa5086424268781af3eec13b77e003274406f6e Mon Sep 17 00:00:00 2001 From: Milo <50248166+Milo123459@users.noreply.github.com> Date: Thu, 15 Apr 2021 19:39:34 +0100 Subject: change grammar --- crates/rust-analyzer/src/main_loop.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crates') 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 { } }; - self.report_progress("fetching", state, msg, None); + self.report_progress("Fetching", state, msg, None); } Task::FetchBuildData(progress) => { let (state, msg) = match progress { @@ -266,7 +266,7 @@ impl GlobalState { }; if let Some(state) = state { - self.report_progress("loading", state, msg, None); + self.report_progress("Loading", state, msg, None); } } } @@ -298,7 +298,7 @@ impl GlobalState { } }; - self.report_progress("indexing", state, message, Some(fraction)); + self.report_progress("Indexing", state, message, Some(fraction)); } } Event::Vfs(mut task) => { @@ -330,7 +330,7 @@ impl GlobalState { Progress::End }; self.report_progress( - "roots scanned", + "Roots Scanned", state, Some(format!("{}/{}", n_done, n_total)), Some(Progress::fraction(n_done, n_total)), -- cgit v1.2.3