about summary refs log tree commit diff
path: root/src/doc/tutorial.md
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-03-31 13:11:35 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-03-31 14:40:44 -0700
commita5681d25906fd07eee00dd430a1053ff722da26a (patch)
treebf80094b92597932f7bd3e1c6e9a8b3d5cfec1cd /src/doc/tutorial.md
parenta7e057d402a345f547e67a326871621472d04035 (diff)
downloadrust-a5681d25906fd07eee00dd430a1053ff722da26a.tar.gz
rust-a5681d25906fd07eee00dd430a1053ff722da26a.zip
Bump version to 0.10
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 e15145e5f1d..891880aaece 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.9.tar.gz
-$ tar -xzf rust-0.9.tar.gz
-$ cd rust-0.9
+$ curl -O http://static.rust-lang.org/dist/rust-0.10.tar.gz
+$ tar -xzf rust-0.10.tar.gz
+$ cd rust-0.10
 $ ./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.9.tar.gz
-[win-exe]: http://static.rust-lang.org/dist/rust-0.9-install.exe
+[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
 
 ## Compiling your first program