diff options
| author | Simonas Kazlauskas <github@kazlauskas.me> | 2016-01-11 21:17:53 +0200 |
|---|---|---|
| committer | Simonas Kazlauskas <github@kazlauskas.me> | 2016-01-11 21:17:53 +0200 |
| commit | 0b8370c3978bb47de97ce754ea601fc1b654cd2b (patch) | |
| tree | a212272a4396ff255fec0b061723b86c676600e6 | |
| parent | b3749b7ceb9442d5364ef206907600ce2a68e523 (diff) | |
| parent | 8cc149dbc161db16f3cf2fb014efa96ca64dc776 (diff) | |
| download | rust-0b8370c3978bb47de97ce754ea601fc1b654cd2b.tar.gz rust-0b8370c3978bb47de97ce754ea601fc1b654cd2b.zip | |
Rollup merge of #30812 - D101101:patch-2, r=steveklabnik
r? @steveklabnik
| -rw-r--r-- | src/doc/book/getting-started.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/doc/book/getting-started.md b/src/doc/book/getting-started.md index 094b88fba86..f72737566a4 100644 --- a/src/doc/book/getting-started.md +++ b/src/doc/book/getting-started.md @@ -303,10 +303,10 @@ prints the string to the screen. Easy enough! [statically allocated]: the-stack-and-the-heap.html -The line ends with a semicolon (`;`). Rust is an *[expression oriented]* -language, which means that most things are expressions, rather than statements. -The `;` indicates that this expression is over, and the next one is ready to -begin. Most lines of Rust code end with a `;`. +The line ends with a semicolon (`;`). Rust is an *[expression-oriented +language]*, which means that most things are expressions, rather than +statements. The `;` indicates that this expression is over, and the next one is +ready to begin. Most lines of Rust code end with a `;`. [expression-oriented language]: glossary.html#expression-oriented-language |
