Skip to content

Commit 35ceea3

Browse files
committed
Merge pull request rust-lang#26440 from steveklabnik/backport_26229
Don't link to specific versions of rust in the book.
2 parents 2f7edda + 0a42782 commit 35ceea3

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/doc/trpl/installing-rust.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@ $ sh rustup.sh
2020

2121
[insecurity]: http://curlpipesh.tumblr.com
2222

23-
If you're on Windows, please download either the [32-bit installer][win32] or
24-
the [64-bit installer][win64] and run it.
23+
If you're on Windows, please download the appropriate [installer][install-page].
2524

26-
[win32]: https://static.rust-lang.org/dist/rust-1.0.0-beta-i686-pc-windows-gnu.msi
27-
[win64]: https://static.rust-lang.org/dist/rust-1.0.0-beta-x86_64-pc-windows-gnu.msi
25+
[install-page]: http://www.rust-lang.org/install.html
2826

2927
## Uninstalling
3028

@@ -44,10 +42,9 @@ Some people, and somewhat rightfully so, get very upset when we tell you to
4442
people who maintain Rust aren't going to hack your computer and do bad things.
4543
That's a good instinct! If you're one of those people, please check out the
4644
documentation on [building Rust from Source][from source], or [the official
47-
binary downloads][install page].
45+
binary downloads][install-page].
4846

4947
[from source]: https://github.com/rust-lang/rust#building-from-source
50-
[install page]: http://www.rust-lang.org/install.html
5148

5249
Oh, we should also mention the officially supported platforms:
5350

@@ -71,10 +68,11 @@ If you've got Rust installed, you can open up a shell, and type this:
7168
$ rustc --version
7269
```
7370

74-
You should see the version number, commit hash, commit date and build date:
71+
You should see the version number, commit hash, and commit date. If you just
72+
installed version 1.0.0, you should see:
7573

7674
```bash
77-
rustc 1.0.0-beta (9854143cb 2015-04-02) (built 2015-04-02)
75+
rustc 1.0.0 (a59de37e9 2015-05-13)
7876
```
7977

8078
If you did, Rust has been installed successfully! Congrats!

0 commit comments

Comments
 (0)