about summary refs log tree commit diff
diff options
context:
space:
mode:
authorKevin Yap <me@kevinyap.ca>2015-02-27 03:13:05 -0800
committerKevin Yap <me@kevinyap.ca>2015-02-27 03:13:05 -0800
commit9a4387fbe0ddcc9780b0e3488b4291908d364392 (patch)
tree0cb8bea3c943c83adef37e9f1a5a361ef59524ab
parentbd27985457d4afc7c0a6218e8e1c30fdf359e48c (diff)
Update expected output of `rustc --version`
The format of `rustc --version` was changed in #21957.
-rw-r--r--src/doc/trpl/installing-rust.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/installing-rust.md b/src/doc/trpl/installing-rust.md
index 5bc33d0a232..6aa4bba6fa6 100644
--- a/src/doc/trpl/installing-rust.md
+++ b/src/doc/trpl/installing-rust.md
@@ -70,10 +70,10 @@ If you've got Rust installed, you can open up a shell, and type this:
 $ rustc --version
 ```
 
-You should see some output that looks something like this:
+You should see the version number, commit hash, commit date and build date:
 
 ```bash
-rustc 1.0.0-nightly (f11f3e7ba 2015-01-04 20:02:14 +0000)
+rustc 1.0.0-nightly (f11f3e7ba 2015-01-04) (built 2015-01-06)
 ```
 
 If you did, Rust has been installed successfully! Congrats!