| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-07-16 | Merge branch 'more-ref-fixes' of https://github.com/tshepang/rust into ↵ | Steve Klabnik | -8/+8 | |
| rollup_central | ||||
| 2015-07-16 | Merge branch 'coercions' of https://github.com/tshepang/rust into rollup_central | Steve Klabnik | -41/+66 | |
| 2015-07-16 | Merge branch 'nopacked' of https://github.com/Stebalien/rust into rollup_central | Steve Klabnik | -2/+0 | |
| 2015-07-16 | Rollup merge of #27020 - goyox86:goyox86/fix-error-handling-snippet, ↵ | Manish Goregaokar | -1/+3 | |
| r=steveklabnik This PR fixes a snippet of code on the error handling chapter of \"The Rust Programming Language\". //cc @steveklabnik The docs state that trying to compile the snippet will yield the following error: ```bash anon>:13:5: 20:6 error: non-exhaustive patterns: `_` not covered [E0004] ``` But instead the error received is: ```bash <anon>:22:46: 22:56 error: unresolved name `NewRelease` <anon>:22 std::io::println(descriptive_probability(NewRelease)); ^~~~~~~~~~ <anon>:22:5: 22:21 error: unresolved name `std::io::println` <anon>:22 std::io::println(descriptive_probability(NewRelease)); ^~~~~~~~~~~~~~~~ error: aborting due to 2 previous errors playpen: application terminated with error code 101 ``` After applying this PR the expected error is returned: ```bash anon>:13:5: 20:6 error: non-exhaustive patterns: `_` not covered [E0004] <anon>:13 match probability(&event) { <anon>:14 1.00 => \"certain\", <anon>:15 0.00 => \"impossible\", <anon>:16 0.00 ... 0.25 => \"very unlikely\", <anon>:17 0.25 ... 0.50 => \"unlikely\", <anon>:18 0.50 ... 0.75 => \"likely\", ... <anon>:13:5: 20:6 help: see the detailed explanation for E0004 error: aborting due to previous error ``` | ||||
| 2015-07-16 | Rollup merge of #26695 - rutsky:patch-2, r=Manishearth | Manish Goregaokar | -2/+2 | |
| r? @steveklabnik | ||||
| 2015-07-14 | Don't mention packed attribute in reference.md | Steven Allen | -2/+0 | |
| 2015-07-14 | Auto merge of #27016 - alexcrichton:inline-asm-docs, r=steveklabnik | bors | -1/+10 | |
| Hot off the press, we've now got some nice documentation to link to in LLVM officially! | ||||
| 2015-07-13 | Fixed snippet to return the proper error. | Jose Narvaez | -1/+3 | |
| 2015-07-13 | doc: Add a link to LLVM's new inline assembly docs | Alex Crichton | -1/+10 | |
| Hot off the press, we've now got some nice documentation to link to in LLVM officially! | ||||
| 2015-07-13 | minor grammatical update | Frank McSherry | -2/+2 | |
| Grammatical update (and passive -> active, but I'm not sure if "Rust" is often used as a subject in the book; feel free to revert that part for style, but keep the subject-verb agreement) | ||||
| 2015-07-12 | Clean up trailing whitespaces | Pavel Pravosud | -11/+11 | |
| 2015-07-12 | Fix multi-threading example in dining-philosophers | Pavel Pravosud | -4/+4 | |
| 2015-07-08 | Rollup merge of #26892 - steveklabnik:gh26482, r=alexcrichton | Steve Klabnik | -3/+5 | |
| We weren't explicit enough about Cargo's default version behavior. For rust-lang/rust at least, Fixes #26482 | ||||
| 2015-07-08 | TRPL: make version constraits explicit | Steve Klabnik | -3/+5 | |
| We weren't explicit enough about Cargo's default version behavior. For rust-lang/rust at least, Fixes #26482 | ||||
| 2015-07-08 | Rollup merge of #26687 - christianweinz:patch-1, r=huonw | Steve Klabnik | -1/+1 | |
| The ‘_‘ wildcard does exactly not handle specific cases but all not specified ones. | ||||
| 2015-07-08 | reference: miscellaneous fixes | Tshepang Lekhonkhobe | -8/+8 | |
| 2015-07-07 | Rollup merge of #26855 - steveklabnik:gh26344, r=alexcrichton | Steve Klabnik | -5/+6 | |
| Fixes #26344 | ||||
| 2015-07-07 | Rollup merge of #26854 - steveklabnik:gh26345, r=alexcrichton | Steve Klabnik | -1/+14 | |
| I am not mentioning #[unsafe_drop_flag] because it should go away eventually, and also because it's just an attribute, it's not really a use of the `unsafe` keyword. Fixes #26345 | ||||
| 2015-07-07 | Rollup merge of #26853 - steveklabnik:gh26346, r=Gankro | Steve Klabnik | -14/+14 | |
| This incorrectly implied that doing things is fine in unsafe code Fixes #26346 | ||||
| 2015-07-07 | Re-word UB in unsafe guide | Steve Klabnik | -14/+14 | |
| This incorrectly implied that doing things is fine in unsafe code Fixes #26346 | ||||
| 2015-07-07 | Not literally all of concurrency is a library | Steve Klabnik | -5/+6 | |
| Fixes #26344 | ||||
| 2015-07-07 | There are four uses of unsafe, actually | Steve Klabnik | -1/+14 | |
| I am not mentioning #[unsafe_drop_flag] because it should go away eventually, and also because it's just an attribute, it's not really a use of the `unsafe` keyword. Fixes #26345 | ||||
| 2015-07-07 | Describe lifetime syntax for impl | Steve Klabnik | -0/+29 | |
| Fixes #26375 | ||||
| 2015-07-06 | Rollup merge of #26835 - tshepang:copy-or-not, r=steveklabnik | Steve Klabnik | -3/+2 | |
| 2015-07-06 | Rollup merge of #26834 - tshepang:space, r=brson | Steve Klabnik | -1/+0 | |
| 2015-07-06 | Rollup merge of #26827 - steveklabnik:gh25786, r=alexcrichton | Steve Klabnik | -0/+32 | |
| Fixes #25786 | ||||
| 2015-07-06 | Rollup merge of #26761 - steveklabnik:actually_ub, r=alexcrichton | Steve Klabnik | -13/+4 | |
| I incorrectly stated that it's an abort. r? @Gankro | ||||
| 2015-07-06 | reference: make 'Move and copied types' section more simple | Tshepang Lekhonkhobe | -3/+2 | |
| 2015-07-06 | reference: do not display the extra space | Tshepang Lekhonkhobe | -1/+0 | |
| 2015-07-06 | FFI panic is UB | Steve Klabnik | -13/+4 | |
| I incorrectly stated that it's an abort. | ||||
| 2015-07-06 | Document _ in bindings | Steve Klabnik | -0/+32 | |
| Fixes #25786 | ||||
| 2015-07-06 | book: introduce `//!` doc comment in comments section | Liigo Zhuang | -0/+11 | |
| Closes #26801 | ||||
| 2015-07-05 | Rollup merge of #26808 - tshepang:closures, r=steveklabnik | Steve Klabnik | -3/+4 | |
| 2015-07-06 | reference: 'inherits' is more clear than 'implies' | Tshepang Lekhonkhobe | -3/+4 | |
| 2015-07-05 | Rollup merge of #26800 - tshepang:comma, r=Gankro | Steve Klabnik | -1/+1 | |
| 2015-07-05 | Rollup merge of #26789 - tshepang:improve-array-examples, r=alexcrichton | Steve Klabnik | -4/+9 | |
| 2015-07-05 | reference: remove stray comma | Tshepang Lekhonkhobe | -1/+1 | |
| 2015-07-05 | reference: improve coercions section | Tshepang Lekhonkhobe | -41/+66 | |
| 2015-07-05 | Rollup merge of #26795 - tshepang:typo, r=steveklabnik | Steve Klabnik | -1/+1 | |
| 2015-07-05 | reference: fix typo | Tshepang Lekhonkhobe | -1/+1 | |
| 2015-07-05 | Rollup merge of #26792 - tshepang:follow-idiom, r=steveklabnik | Steve Klabnik | -4/+2 | |
| 2015-07-05 | reference: improve lambda example | Tshepang Lekhonkhobe | -4/+2 | |
| 2015-07-05 | Rollup merge of #26791 - tshepang:misc-ref-fixes, r=steveklabnik | Steve Klabnik | -2/+2 | |
| One is for grammar, and the other is for clarity | ||||
| 2015-07-05 | reference: tiny fixes | Tshepang Lekhonkhobe | -2/+2 | |
| One is for grammar, and the other is for clarity | ||||
| 2015-07-05 | Rollup merge of #26788 - tshepang:not-exclamation-marks, r=steveklabnik | Steve Klabnik | -2/+2 | |
| The sentences are also so short that they don't need periods at the end | ||||
| 2015-07-05 | Rollup merge of #26787 - tshepang:tuple-usage, r=steveklabnik | Steve Klabnik | -3/+6 | |
| 2015-07-05 | Rollup merge of #26785 - tshepang:inference, r=steveklabnik | Steve Klabnik | -12/+21 | |
| …at and integer types | ||||
| 2015-07-05 | reference: improve examples of the different array types | Tshepang Lekhonkhobe | -4/+9 | |
| 2015-07-05 | reference: that looks like exclamations marks for some fonts | Tshepang Lekhonkhobe | -2/+2 | |
| The sentences are also so short that they don't need periods at the end | ||||
| 2015-07-05 | reference: make tuple usage examples more meaningful | Tshepang Lekhonkhobe | -3/+6 | |
