| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-10-22 | Rollup merge of #29207 - ykomatsu:trpl, r=steveklabnik | Steve Klabnik | -3/+3 | |
| 2015-10-22 | Correct a previous patch | Yoshito Komatsu | -1/+1 | |
| 2015-10-21 | Fix some typos in TRPL | Yoshito Komatsu | -3/+3 | |
| 2015-10-19 | Change to avoid repeated "is" | Yoshito Komatsu | -5/+5 | |
| 2015-10-18 | Fix some typos | Yoshito Komatsu | -1/+1 | |
| 2015-10-12 | Typo fix | David Ripton | -1/+1 | |
| 2015-10-05 | docs: anchors fixes | Simon Mazur | -2/+2 | |
| 2015-10-04 | fix another typo | Seeker14491 | -1/+1 | |
| 2015-10-03 | fix a few typos | Seeker14491 | -7/+7 | |
| 2015-09-30 | Improve wording in error handling guide | Steve Klabnik | -2/+2 | |
| The original blog post referred to examples by their file names, and now that it's in guide form, there is no file name. So edit the text so that it makes a bit more sense. Fixes #28428 | ||||
| 2015-09-21 | Update error-handling.md | Reza Akhavan | -1/+1 | |
| 2015-09-21 | TRPL: Fix typo | Bastien Dejean | -1/+1 | |
| 2015-09-21 | Auto merge of #28541 - baskerville:trpl-two-typos, r=steveklabnik | bors | -2/+2 | |
| r? @steveklabnik | ||||
| 2015-09-20 | TRPL: Fix two typos | Bastien Dejean | -2/+2 | |
| 2015-09-20 | doc: Fix broken links | Simon Mazur | -27/+27 | |
| 2015-09-19 | change back to anchors; divs break md | David Szotten | -18/+18 | |
| 2015-09-19 | missing punctuation | David Szotten | -1/+1 | |
| 2015-09-19 | its vs it's | David Szotten | -1/+1 | |
| 2015-09-19 | wrap more referenced code blocks in divs | David Szotten | -0/+14 | |
| 2015-09-19 | angle brackets get mis-parsed. bug? | David Szotten | -1/+1 | |
| 2015-09-19 | link needs puncuation | David Szotten | -2/+2 | |
| 2015-09-18 | remove preceeding blank line | David Szotten | -1/+0 | |
| 2015-09-18 | fix anchor link | David Szotten | -1/+1 | |
| 2015-09-18 | Use divs with ids rather than as with names. | Ms2ger | -2/+4 | |
| The id attribute has been an official part of HTML since 1997. There is no reason not to use it. | ||||
| 2015-09-17 | Rollup merge of #28422 - christopherdumas:label_code, r=steveklabnik | Steve Klabnik | -1/+4 | |
| 2015-09-15 | Fixe heading | christopherdumas | -1/+1 | |
| 2015-09-15 | Fix option link and anchor links. | christopherdumas | -7/+6 | |
| 2015-09-15 | Added anchors for the code snippets. | christopherdumas | -0/+3 | |
| 2015-09-15 | Fix option link and anchor links. | christopherdumas | -5/+4 | |
| 2015-09-12 | TRPL: Fix Headlines, Links in "Error Handling" | Pascal Hertleif | -36/+39 | |
| - Headlines begin at 1st level now like the rest of the book - All Headlines a blank line above and below - Fix links in this chapter's TOC | ||||
| 2015-09-10 | Adapted @BurtSushi's blog post for the error handling chapter, rewrite the ↵ | christopherdumas | -181/+2007 | |
| case study. | ||||
| 2015-08-24 | Clarify a sentence in the Book | Matěj Grabovský | -2/+2 | |
| 2015-07-13 | Fixed snippet to return the proper error. | Jose Narvaez | -1/+3 | |
| 2015-06-22 | Use a more descriptive variable name. | Jake Hickey | -3/+3 | |
| I'm currently reading the rust book and this variable name tripped me up. Because it was called "input", I thought at first it might contain the line read by read_line(). This new variable name will be more instructive to rust beginners. | ||||
| 2015-05-30 | Fixes consistency in before/after example | frankamp | -1/+1 | |
| The doc indicates that you can replace 'before' with 'after' showing the use of try!. The two examples should be equivalent, but they are not. In the File::create we were inducing a panic before in case of error, not propagating. It is important for newbies (like myself) to understand that try! propagates failures, while unwrap can induce a panic. The other alternative is to make the 'before' File::create also manually handle Err like the other calls. Either way it would be consistent. | ||||
| 2015-05-18 | TRPL: Normalize rust Code Block Markers | Pascal Hertleif | -4/+4 | |
| `{rust,ignore}` -> `rust,ignore | ||||
| 2015-05-13 | trpl/error-handling - fix typo | Swaroop C H | -1/+1 | |
| 2015-05-13 | Add link to Debug trait | Swaroop C H | -0/+2 | |
| I don't recall reading about this `Debug` trait so far in the book. | ||||
| 2015-05-12 | book: typo fixes, wording improvements. | Shmuale Mark | -1/+1 | |
| The text in iterators.md wasn't wrong, but it read awkwardly to my ear. | ||||
| 2015-05-10 | Update error-handling.md | Isaac Ge | -1/+1 | |
| Fix two typos while `io::stdin().read_line()` returns `Result` actually Signed-off-by: acgtyrant <acgtyrant@gmail.com> | ||||
| 2015-05-03 | =BG= minor: File::open --> File::create in rust book | Brendan Graetz | -2/+2 | |
| - `FIle::open` is for opening a file in read-only mode - `FIle::create` is for opening a file in write-only mode, which is what we want instead for this example to make sense | ||||
| 2015-04-16 | remove example usage of from_str in error docs | Steve Klabnik | -15/+18 | |
| Fixes #24185 | ||||
| 2015-04-16 | Fix some broken links in the book | Florian Hartwig | -1/+1 | |
| 2015-04-13 | Point to From trait in error handling guide | fenduru | -1/+1 | |
| Not sure if `From<Error>` is the correct way to reference that trait (maybe `From<E: Error>`?) | ||||
| 2015-04-01 | Fix rust book error-handling.md for new std::io. | kgv | -6/+7 | |
| Fix example and some text for: `read_line` takes `&mut String` and return `Result` instead `IoResult`. | ||||
| 2015-02-24 | Mention try macro in error chapter | Steve Klabnik | -0/+72 | |
| Fixes #22342 | ||||
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -2/+2 | |
| 2015-01-17 | doc: Remove extra whitespace in the middle of lines to provide alignment | Nick Howell | -6/+6 | |
| "Idiomatic code should not use extra whitespace in the middle of a line to provide alignment." http://aturon.github.io/style/whitespace.html I realize the linked page still needs an RFC, but the docs should be written in accordance with the guidelines nevertheless. | ||||
| 2015-01-17 | Fix up titles of TRPL chapters | Steve Klabnik | -1/+1 | |
| 2015-01-12 | Purge references to Rust tasks from TRPL. | Paul Crowley | -2/+2 | |
