Skip to content

Commit 32cea07

Browse files
committed
---
yaml --- r: 212829 b: refs/heads/master c: 1671b9b h: refs/heads/master i: 212827: 8f3525f v: v3
1 parent 1a7ff74 commit 32cea07

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 793d9fcb5237f2148a7a40f2f17d4a8dcb6128cb
2+
refs/heads/master: 1671b9baeceeb38ddb7366668d28e3a7ee839ef3
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: ba0e1cd8147d452c356aacb29fb87568ca26f111
55
refs/heads/try: 1864973ae17213c5a58c4dd3f9af6d1b6c7d2e05

trunk/.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ before_script:
1616
script:
1717
- make tidy
1818

19+
# Real testing happens on http://buildbot.rust-lang.org/
20+
#
21+
# See https://github.com/rust-lang/rust-buildbot
22+
# CONTRIBUTING.md#pull-requests
23+
1924
notifications:
2025
email: false
2126

trunk/src/doc/complement-lang-faq.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Yes. For example (incomplete):
3737
* [wit.ai](https://github.com/wit-ai/witd)
3838
* [Codius](https://codius.org/blog/codius-rust/)
3939
* [MaidSafe](http://maidsafe.net/)
40+
* [Terminal.com](https://terminal.com)
4041

4142
## Does it run on Windows?
4243

trunk/src/doc/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@ extern fn new_i32() -> i32 { 0 }
11111111
extern "stdcall" fn new_i32_stdcall() -> i32 { 0 }
11121112
```
11131113

1114-
Unlike normal functions, extern fns have an `extern "ABI" fn()`. This is the
1114+
Unlike normal functions, extern fns have type `extern "ABI" fn()`. This is the
11151115
same type as the functions declared in an extern block.
11161116

11171117
```

trunk/src/doc/trpl/hello-cargo.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,7 @@ To start a new project with Cargo, use `cargo new`:
145145
$ cargo new hello_world --bin
146146
```
147147

148-
We’re passing `--bin` because we're making a binary program: if we were making
149-
a library, we'd leave it off.
148+
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)
150149

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

trunk/src/doc/trpl/installing-rust.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,9 @@ $ sh rustup.sh
2424

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

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

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

3331
## Uninstalling
3432

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

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

5653
Oh, we should also mention the officially supported platforms:
5754

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

78-
You should see the version number, commit hash, commit date and build date:
75+
You should see the version number, commit hash, and commit date. If you just
76+
installed version 1.0.0, you should see:
7977

8078
```bash
81-
rustc 1.0.0 (a59de37e9 2015-05-13) (built 2015-05-14)
79+
rustc 1.0.0 (a59de37e9 2015-05-13)
8280
```
8381

8482
If you did, Rust has been installed successfully! Congrats!

0 commit comments

Comments
 (0)