about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Sireneva <yuki.utk8g@gmail.com>2024-12-10 00:13:17 +0300
committerYuki Sireneva <yuki.utk8g@gmail.com>2024-12-10 00:13:17 +0300
commit9aebb5c930fe858732e40b8256f687c21e25f5c7 (patch)
tree5842e810061dac065824556b8b4fb33ef2f02a4b
parent91adfec2f0fd4e3a84acf644436a50b4b1f487d8 (diff)
downloadrust-9aebb5c930fe858732e40b8256f687c21e25f5c7.tar.gz
rust-9aebb5c930fe858732e40b8256f687c21e25f5c7.zip
crates/r-a: Fix typo in debug message
-rw-r--r--src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs b/src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs
index 73fce42437f..a34f0a3c929 100644
--- a/src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs
+++ b/src/tools/rust-analyzer/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 {