Skip to content

Commit

Permalink
Auto merge of rust-lang#26238 - Manishearth:rollup, r=Manishearth
Browse files Browse the repository at this point in the history
- Successful merges: rust-lang#24495, rust-lang#26229, rust-lang#26231
- Failed merges:
  • Loading branch information
bors committed Jun 12, 2015
2 parents 69db64f + a9ea380 commit a2f2a64
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
1 change: 1 addition & 0 deletions src/doc/complement-lang-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Yes. For example (incomplete):
* [wit.ai](https://github.com/wit-ai/witd)
* [Codius](https://codius.org/blog/codius-rust/)
* [MaidSafe](http://maidsafe.net/)
* [Terminal.com](https://terminal.com)

## Does it run on Windows?

Expand Down
3 changes: 1 addition & 2 deletions src/doc/trpl/hello-cargo.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,7 @@ To start a new project with Cargo, use `cargo new`:
$ cargo new hello_world --bin
```

We’re passing `--bin` because we're making a binary program: if we were making
a library, we'd leave it off.
We’re passing `--bin` because our goal is to get straight to making an executable application, as opposed to a library. Executables are often called ‘binaries.’ (as in `/usr/bin`, if you’re on a Unix system)

Let's check out what Cargo has generated for us:

Expand Down
12 changes: 5 additions & 7 deletions src/doc/trpl/installing-rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ $ sh rustup.sh

[insecurity]: http://curlpipesh.tumblr.com

If you're on Windows, please download either the [32-bit installer][win32] or
the [64-bit installer][win64] and run it.
If you're on Windows, please download the appropriate [installer][install-page].

[win32]: https://static.rust-lang.org/dist/rust-1.0.0-i686-pc-windows-gnu.msi
[win64]: https://static.rust-lang.org/dist/rust-1.0.0-x86_64-pc-windows-gnu.msi
[install-page]: http://www.rust-lang.org/install.html

## Uninstalling

Expand All @@ -51,7 +49,6 @@ documentation on [building Rust from Source][from-source], or [the official
binary downloads][install-page].

[from-source]: https://github.com/rust-lang/rust#building-from-source
[install-page]: http://www.rust-lang.org/install.html

Oh, we should also mention the officially supported platforms:

Expand All @@ -75,10 +72,11 @@ If you've got Rust installed, you can open up a shell, and type this:
$ rustc --version
```

You should see the version number, commit hash, commit date and build date:
You should see the version number, commit hash, and commit date. If you just
installed version 1.0.0, you should see:

```bash
rustc 1.0.0 (a59de37e9 2015-05-13) (built 2015-05-14)
rustc 1.0.0 (a59de37e9 2015-05-13)
```

If you did, Rust has been installed successfully! Congrats!
Expand Down

0 comments on commit a2f2a64

Please sign in to comment.