From 2f357231709d52ef1ba94ab8883871b838a24fc2 Mon Sep 17 00:00:00 2001 From: Jake Kaufman Date: Mon, 15 Sep 2014 23:36:17 -0700 Subject: [PATCH 1/2] Correct windows install link in guide This closes #17260. The guide references the old install location for the windows rust install before it was split into 64bit and 32bit installers. This adds a link to each binary. --- src/doc/guide.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 140536543d93d..252aa9d265974 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -29,8 +29,11 @@ $ curl -s https://static.rust-lang.org/rustup.sh | sudo sh (If you're concerned about `curl | sudo sh`, please keep reading. Disclaimer below.) -If you're on Windows, please [download this .exe and run -it](https://static.rust-lang.org/dist/rust-nightly-install.exe). +If you're on Windows, please download either the [32-bit +installer](https://static.rust-lang.org/dist/rust-nightly-i686-pc-mingw32.exe) +or the [64-bit +installer](https://static.rust-lang.org/dist/rust-nightly-x86_64-w64-mingw32.exe) +and run it. If you decide you don't want Rust anymore, we'll be a bit sad, but that's okay. Not every programming language is great for everyone. Just pass an argument to From 7d00eb61339f648222996df3f4c00ed045222a39 Mon Sep 17 00:00:00 2001 From: Jake Kaufman Date: Tue, 16 Sep 2014 08:44:47 -0700 Subject: [PATCH 2/2] Update triple per comments --- src/doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 252aa9d265974..790be7af06ab1 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -30,7 +30,7 @@ $ curl -s https://static.rust-lang.org/rustup.sh | sudo sh below.) If you're on Windows, please download either the [32-bit -installer](https://static.rust-lang.org/dist/rust-nightly-i686-pc-mingw32.exe) +installer](https://static.rust-lang.org/dist/rust-nightly-i686-w64-mingw32.exe) or the [64-bit installer](https://static.rust-lang.org/dist/rust-nightly-x86_64-w64-mingw32.exe) and run it.