Unnamed repository; edit this file 'description' to name the repository.
crates/r-a: Fix typo in debug message
Yuki Sireneva 2024-12-10
parent 99a6ecd · commit dff8277
-rw-r--r--crates/rust-analyzer/src/main_loop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/main_loop.rs b/crates/rust-analyzer/src/main_loop.rs
index 73fce42437..a34f0a3c92 100644
--- a/crates/rust-analyzer/src/main_loop.rs
+++ b/crates/rust-analyzer/src/main_loop.rs
@@ -809,7 +809,7 @@ impl GlobalState {
}
}
vfs::loader::Message::Progress { n_total, n_done, dir, config_version } => {
- let _p = span!(Level::INFO, "GlobalState::handle_vfs_mgs/progress").entered();
+ let _p = span!(Level::INFO, "GlobalState::handle_vfs_msg/progress").entered();
always!(config_version <= self.vfs_config_version);
let (n_done, state) = match n_done {