about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-03-30 09:10:06 +0200
committerGitHub <noreply@github.com>2022-03-30 09:10:06 +0200
commita629b2ac6869661b15e2439b31dba4c6925fc686 (patch)
treef1662d2af5fc5efff030b9c8aa8c8bf7dc30cb4a /compiler/rustc_codegen_gcc
parentabb02d40a49429952270d8f3cf4b368c6e3f1d1f (diff)
parenta9cc3f6564e4563df568a09b42984313446dc2d3 (diff)
downloadrust-a629b2ac6869661b15e2439b31dba4c6925fc686.tar.gz
rust-a629b2ac6869661b15e2439b31dba4c6925fc686.zip
Rollup merge of #95460 - nyurik:spelling-str, r=lcnr
Spellchecking compiler code

Address some spelling mistakes in strings, private function names, and function params.
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rwxr-xr-xcompiler/rustc_codegen_gcc/rustup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/rustup.sh b/compiler/rustc_codegen_gcc/rustup.sh
index 01ce5bb78be..11d39a122f5 100755
--- a/compiler/rustc_codegen_gcc/rustup.sh
+++ b/compiler/rustc_codegen_gcc/rustup.sh
@@ -10,7 +10,7 @@ case $1 in
         rustup toolchain install --profile minimal nightly-${TOOLCHAIN} # Sanity check to see if the nightly exists
         echo nightly-${TOOLCHAIN} > rust-toolchain
 
-        echo "=> Uninstalling all old nighlies"
+        echo "=> Uninstalling all old nightlies"
         for nightly in $(rustup toolchain list | grep nightly | grep -v $TOOLCHAIN | grep -v nightly-x86_64); do
             rustup toolchain uninstall $nightly
         done