From 0a2a50a663c27ca6edb33286b8762b9cd66a0bd7 Mon Sep 17 00:00:00 2001 From: Eclips4 Date: Tue, 28 Mar 2023 12:32:51 +0300 Subject: [PATCH] Fix typo --- crates/rust-analyzer/src/global_state.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rust-analyzer/src/global_state.rs b/crates/rust-analyzer/src/global_state.rs index f0ca8ff9dbd..82588c458c5 100644 --- a/crates/rust-analyzer/src/global_state.rs +++ b/crates/rust-analyzer/src/global_state.rs @@ -93,7 +93,7 @@ pub(crate) struct GlobalState { /// first phase is much faster, and is much less likely to fail. /// /// This creates a complication -- by the time the second phase completes, - /// the results of the fist phase could be invalid. That is, while we run + /// the results of the first phase could be invalid. That is, while we run /// `cargo check`, the user edits `Cargo.toml`, we notice this, and the new /// `cargo metadata` completes before `cargo check`. ///