]> git.lizzy.rs Git - rust.git/commitdiff
Fix link in getting-started.md
authorSergey Veselkov <veselkovsd@yandex.ru>
Sun, 10 Jan 2016 21:13:54 +0000 (00:13 +0300)
committerSergey Veselkov <veselkovsd@yandex.ru>
Sun, 10 Jan 2016 21:13:54 +0000 (00:13 +0300)
src/doc/book/getting-started.md

index a4c028e85b0d79fd3b6c3b1e3faf6acd0a7a7aaa..c2f458419ec6c18be76770fcce30d191fb4be785 100644 (file)
@@ -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