summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Anderson <andersrb@gmail.com>2015-06-19 15:21:56 -0700
committerBrian Anderson <andersrb@gmail.com>2015-06-19 15:21:56 -0700
commit35ceea3997c79a3b7562e89b462ab76af5b86b22 (patch)
treeaf1b8d8e673c93dc10844a1b0cc1786bec9f0e04
parent2f7edda3b354f3d7d865197e2ea7d3672d2a68ba (diff)
parent0a427820356e9133a7e556e94ad255d9db75854c (diff)
Merge pull request #26440 from steveklabnik/backport_262291.1.0
Don't link to specific versions of rust in the book.
-rw-r--r--src/doc/trpl/installing-rust.md14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/doc/trpl/installing-rust.md b/src/doc/trpl/installing-rust.md
index b8230f060e0..af1e503bb7f 100644
--- a/src/doc/trpl/installing-rust.md
+++ b/src/doc/trpl/installing-rust.md
@@ -20,11 +20,9 @@ $ sh rustup.sh
[insecurity]: http://curlpipesh.tumblr.com
-If you're on Windows, please download either the [32-bit installer][win32] or
-the [64-bit installer][win64] and run it.
+If you're on Windows, please download the appropriate [installer][install-page].
-[win32]: https://static.rust-lang.org/dist/rust-1.0.0-beta-i686-pc-windows-gnu.msi
-[win64]: https://static.rust-lang.org/dist/rust-1.0.0-beta-x86_64-pc-windows-gnu.msi
+[install-page]: http://www.rust-lang.org/install.html
## Uninstalling
@@ -44,10 +42,9 @@ Some people, and somewhat rightfully so, get very upset when we tell you to
people who maintain Rust aren't going to hack your computer and do bad things.
That's a good instinct! If you're one of those people, please check out the
documentation on [building Rust from Source][from source], or [the official
-binary downloads][install page].
+binary downloads][install-page].
[from source]: https://github.com/rust-lang/rust#building-from-source
-[install page]: http://www.rust-lang.org/install.html
Oh, we should also mention the officially supported platforms:
@@ -71,10 +68,11 @@ If you've got Rust installed, you can open up a shell, and type this:
$ rustc --version
```
-You should see the version number, commit hash, commit date and build date:
+You should see the version number, commit hash, and commit date. If you just
+installed version 1.0.0, you should see:
```bash
-rustc 1.0.0-beta (9854143cb 2015-04-02) (built 2015-04-02)
+rustc 1.0.0 (a59de37e9 2015-05-13)
```
If you did, Rust has been installed successfully! Congrats!