about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2018-02-10 12:22:57 +0100
committerMatthias Krüger <matthias.krueger@famsik.de>2018-02-10 12:22:57 +0100
commit7ee3e39f640a9532842e1441bf6bc98893b6a3ba (patch)
tree2c4ba1c3ee1d5abe8a5e1c68d8b29404f38474c5 /src/bootstrap
parent39abcc04139a0fd24422f422271849dc91e39a88 (diff)
downloadrust-7ee3e39f640a9532842e1441bf6bc98893b6a3ba.tar.gz
rust-7ee3e39f640a9532842e1441bf6bc98893b6a3ba.zip
fix typos in src/{bootstrap,ci,etc,lib{backtrace,core,fmt_macros}}
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/builder.rs2
-rw-r--r--src/bootstrap/lib.rs2
-rw-r--r--src/bootstrap/test.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
index 6c68ee18506..03630dfbed3 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -570,7 +570,7 @@ impl<'a> Builder<'a> {
         // build scripts in that situation.
         //
         // If LLVM support is disabled we need to use the snapshot compiler to compile
-        // build scripts, as the new compiler doesnt support executables.
+        // build scripts, as the new compiler doesn't support executables.
         if mode == Mode::Libstd || !self.build.config.llvm_enabled {
             cargo.env("RUSTC_SNAPSHOT", &self.initial_rustc)
                  .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs
index a84a6a8990b..83c270865c0 100644
--- a/src/bootstrap/lib.rs
+++ b/src/bootstrap/lib.rs
@@ -666,7 +666,7 @@ impl Build {
         }
     }
 
-    /// Returns the path to the linker for the given target if it needs to be overriden.
+    /// Returns the path to the linker for the given target if it needs to be overridden.
     fn linker(&self, target: Interned<String>) -> Option<&Path> {
         if let Some(linker) = self.config.target_config.get(&target)
                                                        .and_then(|c| c.linker.as_ref()) {
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index eae8ec1311d..f6b95f0bf97 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -902,7 +902,7 @@ impl Step for Compiletest {
             }
         }
         if suite == "run-make" && !build.config.llvm_enabled {
-            println!("Ignoring run-make test suite as they generally dont work without LLVM");
+            println!("Ignoring run-make test suite as they generally don't work without LLVM");
             return;
         }