diff options
| author | bors <bors@rust-lang.org> | 2015-11-28 18:09:07 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-11-28 18:09:07 +0000 |
| commit | 0b3424321cf4a07f4c74c59b5785bcd6a17d4235 (patch) | |
| tree | a30887d08e78cd331687db9d17de18ab81792ee0 /src | |
| parent | 5ea65c03d96875a41c556ccd949617d4830e0ee9 (diff) | |
| parent | 05dde0d3252486a532d50d9003e099ae17136e49 (diff) | |
Auto merge of #29651 - tshepang:misc, r=steveklabnik
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/book/dining-philosophers.md | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/doc/book/dining-philosophers.md b/src/doc/book/dining-philosophers.md index ace0fbc821a..a0f629c32e3 100644 --- a/src/doc/book/dining-philosophers.md +++ b/src/doc/book/dining-philosophers.md @@ -148,7 +148,7 @@ short strings anyway. One last thing you’ll notice: we just define a `Philosopher`, and seemingly don’t do anything with it. Rust is an ‘expression based’ language, which means that almost everything in Rust is an expression which returns a value. This is -true of functions as well, the last expression is automatically returned. Since +true of functions as well — the last expression is automatically returned. Since we create a new `Philosopher` as the last expression of this function, we end up returning it. @@ -178,8 +178,8 @@ fn main() { } ``` -Here, we create five variable bindings with five new philosophers. These are my -favorite five, but you can substitute anyone you want. If we _didn’t_ define +Here, we create five variable bindings with five new philosophers. +If we _didn’t_ define that `new()` function, it would look like this: ```rust @@ -440,10 +440,13 @@ closure as an argument and calls that closure on each element in turn. Here’s where the concurrency happens. The `thread::spawn` function takes a closure as an argument and executes that closure in a new thread. This closure needs an extra annotation, `move`, to indicate that the closure is going to take -ownership of the values it’s capturing. Primarily, the `p` variable of the +ownership of the values it’s capturing. In this case, it's the `p` variable of the `map` function. -Inside the thread, all we do is call `eat()` on `p`. Also note that the call to `thread::spawn` lacks a trailing semicolon, making this an expression. This distinction is important, yielding the correct return value. For more details, read [Expressions vs. Statements][es]. +Inside the thread, all we do is call `eat()` on `p`. Also note that +the call to `thread::spawn` lacks a trailing semicolon, making this an +expression. This distinction is important, yielding the correct return +value. For more details, read [Expressions vs. Statements][es]. [es]: functions.html#expressions-vs-statements |
