about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-03 17:16:50 -0800
committerbors <bors@rust-lang.org>2014-01-03 17:16:50 -0800
commit8bfd2a84cfe83b3a0ff8f3a828303b378a8d94b9 (patch)
treece45419ac8ece0f24d7090317c2c58ef6d6afecf /doc/tutorial.md
parentd3ae3a27c484af5a347b25e0be06aaca951010f4 (diff)
parent6da2c861b11959748c9920d6aaf0e88a5eedb45e (diff)
downloadrust-8bfd2a84cfe83b3a0ff8f3a828303b378a8d94b9.tar.gz
rust-8bfd2a84cfe83b3a0ff8f3a828303b378a8d94b9.zip
auto merge of #11277 : brson/rust/more0.9, r=alexcrichton
Diffstat (limited to 'doc/tutorial.md')
-rw-r--r--doc/tutorial.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index a19d8c3e820..edb93521394 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -103,9 +103,9 @@ If you've fulfilled those prerequisites, something along these lines
 should work.
 
 ~~~~ {.notrust}
-$ curl -O http://static.rust-lang.org/dist/rust-0.8.tar.gz
-$ tar -xzf rust-0.8.tar.gz
-$ cd rust-0.8
+$ curl -O http://static.rust-lang.org/dist/rust-0.9.tar.gz
+$ tar -xzf rust-0.9.tar.gz
+$ cd rust-0.9
 $ ./configure
 $ make && make install
 ~~~~
@@ -120,8 +120,8 @@ When complete, `make install` will place several programs into
 `/usr/local/bin`: `rustc`, the Rust compiler; `rustdoc`, the
 API-documentation tool; and `rustpkg`, the Rust package manager.
 
-[tarball]: http://static.rust-lang.org/dist/rust-0.8.tar.gz
-[win-exe]: http://static.rust-lang.org/dist/rust-0.8-install.exe
+[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
 
 ## Compiling your first program