From 8cc149dbc161db16f3cf2fb014efa96ca64dc776 Mon Sep 17 00:00:00 2001 From: Sergey Veselkov Date: Mon, 11 Jan 2016 00:13:54 +0300 Subject: [PATCH] Fix link in getting-started.md --- src/doc/book/getting-started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/doc/book/getting-started.md b/src/doc/book/getting-started.md index a4c028e85b0d7..c2f458419ec6c 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