Merge pull request #18650 from yuki0iq/fix-typo

crates/r-a: Fix typo in debug message
This commit is contained in:
Laurențiu Nicola 2024-12-10 05:08:21 +00:00 committed by GitHub
commit 54879d9ae4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -809,7 +809,7 @@ impl GlobalState {
} }
} }
vfs::loader::Message::Progress { n_total, n_done, dir, config_version } => { 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); always!(config_version <= self.vfs_config_version);
let (n_done, state) = match n_done { let (n_done, state) = match n_done {