about summary refs log tree commit diff
path: root/compiler/rustc_codegen_cranelift/scripts
diff options
context:
space:
mode:
authorYuri Astrakhan <YuriAstrakhan@gmail.com>2022-03-30 01:42:10 -0400
committerYuri Astrakhan <YuriAstrakhan@gmail.com>2022-03-30 01:42:10 -0400
commita9cc3f6564e4563df568a09b42984313446dc2d3 (patch)
tree81c87146a135a4b970ec40db4a08f24a4ecc6f0f /compiler/rustc_codegen_cranelift/scripts
parent600ec284838c52d1f6657c2cf0097b58970b133b (diff)
downloadrust-a9cc3f6564e4563df568a09b42984313446dc2d3.tar.gz
rust-a9cc3f6564e4563df568a09b42984313446dc2d3.zip
Spellchecking compiler code
Address some spelling mistakes in strings, private function names, and function params.
Diffstat (limited to 'compiler/rustc_codegen_cranelift/scripts')
-rwxr-xr-xcompiler/rustc_codegen_cranelift/scripts/rustup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_cranelift/scripts/rustup.sh b/compiler/rustc_codegen_cranelift/scripts/rustup.sh
index cc34c080886..bc4c06ed7d2 100755
--- a/compiler/rustc_codegen_cranelift/scripts/rustup.sh
+++ b/compiler/rustc_codegen_cranelift/scripts/rustup.sh
@@ -11,7 +11,7 @@ case $1 in
         sed -i "s/\"nightly-.*\"/\"nightly-${TOOLCHAIN}\"/" rust-toolchain
         rustup component add rustfmt || true
 
-        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