about summary refs log tree commit diff
path: root/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
commitae2f203e24202c8e8337cf8500cb17d8359d611f (patch)
tree2f5f8c9266a01113454a034ef4d096ef3848b77b /scripts
parent1bd90f86447a4b5460d53d412e376d1cc8055d97 (diff)
downloadrust-ae2f203e24202c8e8337cf8500cb17d8359d611f.tar.gz
rust-ae2f203e24202c8e8337cf8500cb17d8359d611f.zip
Spellchecking compiler code
Address some spelling mistakes in strings, private function names, and function params.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/rustup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/rustup.sh b/scripts/rustup.sh
index cc34c080886..bc4c06ed7d2 100755
--- a/scripts/rustup.sh
+++ b/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