about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-04-25 13:02:08 +0000
committerbors <bors@rust-lang.org>2024-04-25 13:02:08 +0000
commit6a9758d4f38d4763bd437c48fa7e5246cecf8d04 (patch)
tree99088b1595ad1298d675f75bffd455c194742159 /src/bootstrap
parent1c84675e1f5bd97307af5a86b4f8e6d9e571362c (diff)
parent45df09b7deaeda5a816d9e447e5cca7b928b60c6 (diff)
downloadrust-6a9758d4f38d4763bd437c48fa7e5246cecf8d04.tar.gz
rust-6a9758d4f38d4763bd437c48fa7e5246cecf8d04.zip
Auto merge of #124058 - TechVest:master, r=fmease
Fix some typos in comments
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/src/core/build_steps/compile.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/core/build_steps/compile.rs b/src/bootstrap/src/core/build_steps/compile.rs
index c20653b5dfa..1d46a158f9e 100644
--- a/src/bootstrap/src/core/build_steps/compile.rs
+++ b/src/bootstrap/src/core/build_steps/compile.rs
@@ -43,7 +43,7 @@ pub struct Std {
     /// This shouldn't be used from other steps; see the comment on [`Rustc`].
     crates: Vec<String>,
     /// When using download-rustc, we need to use a new build of `std` for running unit tests of Std itself,
-    /// but we need to use the downloaded copy of std for linking to rustdoc. Allow this to be overriden by `builder.ensure` from other steps.
+    /// but we need to use the downloaded copy of std for linking to rustdoc. Allow this to be overridden by `builder.ensure` from other steps.
     force_recompile: bool,
     extra_rust_args: &'static [&'static str],
     is_for_mir_opt_tests: bool,