summary refs log tree commit diff
path: root/src/doc/tutorial.md
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-04-03 16:28:46 -0700
committerBrian Anderson <banderson@mozilla.com>2014-04-03 16:28:46 -0700
commit0875ffcbfff1b8b432ae09dd435466f34e2c61fa (patch)
treed09361df10af0ea15628e14c9b86f504be42ab60 /src/doc/tutorial.md
parentbb31cb8d2e4e415cbb71d368918d72902e655e01 (diff)
downloadrust-0875ffcbfff1b8b432ae09dd435466f34e2c61fa.tar.gz
rust-0875ffcbfff1b8b432ae09dd435466f34e2c61fa.zip
Bump version to 0.11-pre
This also changes some of the download links in the documentation
to 'nightly'.
Diffstat (limited to 'src/doc/tutorial.md')
-rw-r--r--src/doc/tutorial.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md
index 7997ed77b5b..9c8718d6f6b 100644
--- a/src/doc/tutorial.md
+++ b/src/doc/tutorial.md
@@ -100,9 +100,9 @@ If you've fulfilled those prerequisites, something along these lines
 should work.
 
 ~~~~ {.notrust}
-$ curl -O http://static.rust-lang.org/dist/rust-0.10.tar.gz
-$ tar -xzf rust-0.10.tar.gz
-$ cd rust-0.10
+$ curl -O http://static.rust-lang.org/dist/rust-nightly.tar.gz
+$ tar -xzf rust-nightly.tar.gz
+$ cd rust-nightly
 $ ./configure
 $ make && make install
 ~~~~
@@ -117,8 +117,8 @@ When complete, `make install` will place several programs into
 `/usr/local/bin`: `rustc`, the Rust compiler, and `rustdoc`, the
 API-documentation tool.
 
-[tarball]: http://static.rust-lang.org/dist/rust-0.10.tar.gz
-[win-exe]: http://static.rust-lang.org/dist/rust-0.10-install.exe
+[tarball]: http://static.rust-lang.org/dist/rust-nightly.tar.gz
+[win-exe]: http://static.rust-lang.org/dist/rust-nightly-install.exe
 
 ## Compiling your first program