diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-28 13:57:00 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-28 19:19:01 +0530 |
| commit | fcd1c3699a95eeda609d275585987828d76f2600 (patch) | |
| tree | c644bbb6729e936f4b9c084b9a1882e230919be2 /src | |
| parent | 040a811b9190d2c2c595e09b5d1db07bedffdde9 (diff) | |
| parent | 9a4387fbe0ddcc9780b0e3488b4291908d364392 (diff) | |
| download | rust-fcd1c3699a95eeda609d275585987828d76f2600.tar.gz rust-fcd1c3699a95eeda609d275585987828d76f2600.zip | |
Rollup merge of #22866 - iKevinY:version-output-doc-fix, r=Manishearth
The format of `rustc --version` was changed in #21957; this PR updates TRPL accordingly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/trpl/installing-rust.md | 4 |
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! |
