| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-04-24 | Rollup merge of #24752 - doomrobo:patch-1, r=steveklabnik | Manish Goregaokar | -17/+8 | |
| Updated sample code to updated syntax (now compiles). Also tweaked the text to reflect the change. | ||||
| 2015-04-24 | Rollup merge of #24750 - withoutboats:patch-1, r=steveklabnik | Manish Goregaokar | -29/+40 | |
| 1) Moved 'while' section below 'loop', 'break', and 'continue'; 2) Added information to 'while' and 'for' loops that they interact with 'break' and 'continue' and may have a lifetime label. 3) Clarified labeling syntax on the infinite loops. | ||||
| 2015-04-24 | Rollup merge of #24742 - mbrubeck:keywords, r=steveklabnik | Manish Goregaokar | -4/+5 | |
| * Add two missing keywords, `Self` and `proc` * Fix some mis-alphabetized keywords r? @steveklabnik | ||||
| 2015-04-24 | Rollup merge of #24740 - mbrubeck:reference, r=steveklabnik | Manish Goregaokar | -3/+5 | |
| r? @steveklabnik | ||||
| 2015-04-24 | Rollup merge of #24734 - vadimcn:patch-1, r=alexcrichton | Manish Goregaokar | -1/+1 | |
| 'win32' -> 'windows', added 'ios' | ||||
| 2015-04-23 | Feature-gate associated constants. | Sean Patrick Santos | -1/+4 | |
| 2015-04-23 | Fix spelling errors. | Mike Boutin | -21/+21 | |
| 2015-04-23 | Update reference.md | tynopex | -0/+27 | |
| Add section for range expressions. | ||||
| 2015-04-23 | Update "Generic Functions" section | Michael Rosenberg | -17/+8 | |
| Updated sample code to updated syntax (now compiles). Also tweaked the text to reflect the change. | ||||
| 2015-04-23 | Fixed typo | Lee Aronson | -1/+1 | |
| 2015-04-23 | Improve information about loops | Lee Aronson | -29/+40 | |
| 1) Moved 'while' section below 'loop', 'break', and 'continue'; 2) Added information to 'while' and 'for' loops that they interact with 'break' and 'continue' and may have a lifetime label. 3) Clarified labeling syntax on the infinite loops. | ||||
| 2015-04-23 | Also mention `/*!` doc comments. | Matt Brubeck | -4/+5 | |
| 2015-04-23 | Update and organize the Keywords table | Matt Brubeck | -4/+5 | |
| * Add two missing keywords, `Self` and `proc` * Fix some mis-alphabetized keywords | ||||
| 2015-04-23 | Clarify that //! comments are also doc comments. | Matt Brubeck | -3/+4 | |
| 2015-04-23 | Update supported values of target_os | Vadim Chugunov | -1/+1 | |
| 'win32' -> 'windows', added 'ios' | ||||
| 2015-04-23 | typo 2 | nwin | -1/+1 | |
| 2015-04-23 | typo | nwin | -1/+1 | |
| 2015-04-23 | object type -> trait object | nwin | -8/+8 | |
| Consistency. The book also refers to it as trait objects. | ||||
| 2015-04-23 | Reference audit: section 5 (Crates and source files) | Robin Kruppe | -10/+25 | |
| 2015-04-23 | Stop mentioning obsolete integer suffixes | Andrzej Janik | -1/+1 | |
| `us` and `is` were replaced with `usize` and `isize` some time ago. | ||||
| 2015-04-20 | Remove feature gated examples from the reference. | Steve Klabnik | -115/+22 | |
| The slice patterns example was nice, so let's put it with the other slice pattern feature gate documentation. Fixes #24573 | ||||
| 2015-04-17 | Remove obsolete discusison of runtime, promote `Linkage` to chapter. | Graydon Hoare | -38/+1 | |
| 2015-04-17 | Improve memory-model section very slightly. | Graydon Hoare | -2/+4 | |
| 2015-04-17 | Improve special-traits section very slightly. | Graydon Hoare | -8/+10 | |
| 2015-04-17 | Eliminate the obsolete term 'slot'. | Graydon Hoare | -24/+24 | |
| 2015-04-17 | Clean up section on Type aliases. | Graydon Hoare | -12/+5 | |
| 2015-04-17 | Trim florid language. | Graydon Hoare | -7/+5 | |
| 2015-04-16 | document missing attributes in the reference | Steve Klabnik | -1/+11 | |
| Fixes #24406 | ||||
| 2015-04-16 | Fix some documentation typos | Luke Gallagher | -3/+3 | |
| 2015-04-14 | Positive case of `len()` -> `is_empty()` | Tamir Duberstein | -1/+1 | |
| `s/(?<!\{ self)(?<=\.)len\(\) == 0/is_empty()/g` | ||||
| 2015-04-01 | Fallout in public-facing and semi-public-facing libs | Niko Matsakis | -1/+5 | |
| 2015-03-31 | std: Clean out #[deprecated] APIs | Alex Crichton | -4/+0 | |
| This commit cleans out a large amount of deprecated APIs from the standard library and some of the facade crates as well, updating all users in the compiler and in tests as it goes along. | ||||
| 2015-03-31 | Rollup merge of #23813 - steveklabnik:gh19733, r=cmr | Manish Goregaokar | -1/+6 | |
| Fixes #19733 | ||||
| 2015-03-30 | Make note of noalias in unsafe reference section | Steve Klabnik | -1/+6 | |
| Fixes #19733 | ||||
| 2015-03-27 | rollup merge of #23786: alexcrichton/less-quotes | Alex Crichton | -1/+1 | |
| Conflicts: src/test/auxiliary/static-function-pointer-aux.rs src/test/auxiliary/trait_default_method_xc_aux.rs src/test/run-pass/issue-4545.rs | ||||
| 2015-03-27 | rollup merge of #23794: brson/slicegate | Alex Crichton | -3/+7 | |
| Conflicts: src/test/run-pass/issue-13027.rs | ||||
| 2015-03-27 | Feature gate *all* slice patterns. #23121 | Brian Anderson | -3/+7 | |
| Until some backwards-compatibility hazards are fixed in #23121, these need to be unstable. [breaking-change] | ||||
| 2015-03-27 | rollup merge of #23285: steveklabnik/gh11794 | Alex Crichton | -239/+22 | |
| Fixes #11794 I mostly removed superflous examples which use the standard library. I have one more quesiton here though: threads. They're mostly a library thing, at this point, right? | ||||
| 2015-03-27 | Unquote all crate names without underscores | Richo Healey | -1/+1 | |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -5/+2 | |
| Now that support has been removed, all lingering use cases are renamed. | ||||
| 2015-03-24 | rollup merge of #23662: steveklabnik/gh23421 | Alex Crichton | -3/+3 | |
| I assume since both shifts say the same thing, I should fix both of them, but then I realized I don't strictly know about left shift. Fixes #23421 r? @pnkfelix | ||||
| 2015-03-24 | correct reference wrt shifts | Steve Klabnik | -3/+3 | |
| Fixes #23421 | ||||
| 2015-03-23 | Add #![feature] attributes to doctests | Brian Anderson | -2/+4 | |
| 2015-03-23 | add lifetime for `while` and `for` expression | FuGangqiang | -2/+2 | |
| 2015-03-23 | fix the attributes sytax | FuGangqiang | -1/+1 | |
| 2015-03-19 | Rename should_fail to should_panic in docs | Johannes Oertel | -1/+1 | |
| 2015-03-16 | Remove stdlib stuff from the Reference | Steve Klabnik | -239/+22 | |
| Fixes #11794 | ||||
| 2015-03-16 | Fallout in testing. | Nick Cameron | -3/+5 | |
| 2015-03-12 | Add monospace font back to literals table | mdinger | -8/+8 | |
| 2015-03-10 | Rollup merge of #23185 - steveklabnik:gh20051, r=alexcrichton | Manish Goregaokar | -8/+8 | |
| Fixes #20051 | ||||
