about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-03-28 09:34:53 +0000
committerbors <bors@rust-lang.org>2023-03-28 09:34:53 +0000
commita375ad668cde817d5ee18a5f96cbc7f3044b812e (patch)
treef52eb6032997c323ddc3f8d9103711fa2228ae4f
parent5bba438c9cf684812e72e9d90c8fea55bd29909c (diff)
parent0a2a50a663c27ca6edb33286b8762b9cd66a0bd7 (diff)
downloadrust-a375ad668cde817d5ee18a5f96cbc7f3044b812e.tar.gz
rust-a375ad668cde817d5ee18a5f96cbc7f3044b812e.zip
Auto merge of #14425 - Eclips4:fix_typo, r=Veykril
Fix typo
-rw-r--r--crates/rust-analyzer/src/global_state.rs2
1 files changed, 1 insertions, 1 deletions
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`.
     ///