Skip to content

Commit 75371eb

Browse files
Merge #8536
8536: change grammar r=kjeremy a=Milo123459 indexing -> Indexing fetching -> Fetching loading -> Loading roots scanned -> Roots Scanned Co-authored-by: Milo <50248166+Milo123459@users.noreply.github.com>
2 parents a78c50f + 2fa5086 commit 75371eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

crates/rust-analyzer/src/main_loop.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ impl GlobalState {
248248
}
249249
};
250250

251-
self.report_progress("fetching", state, msg, None);
251+
self.report_progress("Fetching", state, msg, None);
252252
}
253253
Task::FetchBuildData(progress) => {
254254
let (state, msg) = match progress {
@@ -266,7 +266,7 @@ impl GlobalState {
266266
};
267267

268268
if let Some(state) = state {
269-
self.report_progress("loading", state, msg, None);
269+
self.report_progress("Loading", state, msg, None);
270270
}
271271
}
272272
}
@@ -298,7 +298,7 @@ impl GlobalState {
298298
}
299299
};
300300

301-
self.report_progress("indexing", state, message, Some(fraction));
301+
self.report_progress("Indexing", state, message, Some(fraction));
302302
}
303303
}
304304
Event::Vfs(mut task) => {
@@ -330,7 +330,7 @@ impl GlobalState {
330330
Progress::End
331331
};
332332
self.report_progress(
333-
"roots scanned",
333+
"Roots Scanned",
334334
state,
335335
Some(format!("{}/{}", n_done, n_total)),
336336
Some(Progress::fraction(n_done, n_total)),

0 commit comments

Comments
 (0)