about summary refs log tree commit diff
path: root/src/doc/book/variable-bindings.md
AgeCommit message (Collapse)AuthorLines
2017-02-13Port TRPL to mdbookSteve Klabnik-256/+0
1. move everything under a src directory 2. add README.md to the SUMMARY.md
2016-12-27And suddenly a german word :Okellerkindt-1/+1
"verboten" is german for "forbidden"
2016-11-23Use literal 5 instead of five in book section 4.1Sam Estep-1/+1
2016-11-13Improved punctuation, capitalization, and sentence structure of code snippet ↵Angelo Polo-8/+8
comments
2016-09-27doc: Fix minor typo in book/variable-bindings.mdNathan Musoke-1/+1
2016-08-13Ensure that attributes are spelled properly.Ahmed Charles-1/+1
2016-06-07Rollup merge of #34125 - MichaelNecio:book_addition, r=steveklabnikSteve Klabnik-1/+4
Noted that shadowing never destroys a value Fixes issue #33887 r? @steveklabnik
2016-06-07Minor changes to variable bindings chapterHorace Abenga-6/+7
* In "... name as another binding, that's currently in scope, will ...", ", that's currently in scope, " is not a parenthetical element, and the commas can be omitted. * Other minor changes.
2016-06-06Noted that shadowing never destroys a valueMichael Necio-1/+4
2016-03-18`let` introduces a statementTang Chenglong-2/+2
I changes *expression* to *statement* to make more accurate, because in Rust, `let` introduces a declaration statement.
2016-01-09Remove many instances of 'just'Steve Klabnik-5/+5
Doing so is considered weaker writing. Thanks @Charlotteis! Fixes #28810
2015-11-19src/doc/trpl -> src/doc/bookSteve Klabnik-0/+252
The book was located under 'src/doc/trpl' because originally, it was going to be hosted under that URL. Late in the game, before 1.0, we decided that /book was a better one, so we changed the output, but not the input. This causes confusion for no good reason. So we'll change the source directory to look like the output directory, like for every other thing in src/doc.