| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-04-04 | auto merge of #5716 : dhardy/rust/master, r=thestinger | bors | -1/+1 | |
| 2013-04-04 | Tutorial: rename variable to avoid confusion. | Diggory Hardy | -1/+1 | |
| 2013-04-04 | auto merge of #5713 : brson/rust/tutorial2, r=thestinger | bors | -39/+28 | |
| It doesn't quite reflect reality | ||||
| 2013-04-04 | auto merge of #5707 : brettcannon/rust/patch-1, r=thestinger | bors | -1/+1 | |
| The sentence "Remember that `(float, float)` is a tuple of two floats" sounds like you've already read a section on tuples, but that section comes later. Changing it to "Assuming that ..." makes it more about taking the writer's word that the syntax is how tuples are defined. | ||||
| 2013-04-04 | auto merge of #5703 : steveklabnik/rust/add_log_docs, r=thestinger | bors | -0/+22 | |
| Closes #5699. | ||||
| 2013-04-03 | doc: Rewrite task tutorial intro | Brian Anderson | -39/+28 | |
| It doesn't quite reflect reality | ||||
| 2013-04-03 | auto merge of #5710 : ajuckel/rust/patch-1, r=luqmana | bors | -1/+1 | |
| One word typo fix | ||||
| 2013-04-03 | Simple typo fix | Anthony Juckel | -1/+1 | |
| 2013-04-03 | One more typo: dubug -> debug | Steve Klabnik | -1/+1 | |
| 2013-04-03 | Update tut. to not sound like I missed a section | Brett Cannon | -1/+1 | |
| The sentence "Remember that `(float, float)` is a tuple of two floats" sounds like you've already read a section on tuples, but that section comes later. Changing it to "Assuming that ..." makes it more about taking the writer's word that the syntax is how tuples are defined. | ||||
| 2013-04-03 | typo fix: na -> an | Steve Klabnik | -1/+1 | |
| 2013-04-03 | Add information about logging macros to the tutorial. | Steve Klabnik | -0/+22 | |
| Closes #5699. | ||||
| 2013-04-03 | rename Linear{Map,Set} => Hash{Map,Set} | Daniel Micay | -4/+4 | |
| 2013-04-03 | hashmap: rm linear namespace | Daniel Micay | -2/+2 | |
| 2013-04-01 | auto merge of #5669 : graydon/rust/tweaks, r=thestinger | bors | -5/+5 | |
| Just some minor cleanup of version strings and copyrights. | ||||
| 2013-04-01 | tidy version numbers and copyright dates | Graydon Hoare | -5/+5 | |
| 2013-04-01 | auto merge of #5662 : catamorphism/rust/docs, r=catamorphism | bors | -1/+99 | |
| r? @brson | ||||
| 2013-04-01 | docs: Xfail test, it's just for illustration anyway | Tim Chevalier | -2/+2 | |
| 2013-04-01 | doc: Update tutorial description of core | Brian Anderson | -23/+59 | |
| 2013-04-01 | docs: Document language items, as per #3342 | Tim Chevalier | -1/+99 | |
| 2013-03-31 | Update tutorial.md | Luqman Aden | -2/+2 | |
| Change fn() -> &fn(). | ||||
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -16/+16 | |
| 2013-03-29 | auto merge of #5624 : thestinger/rust/tutorial, r=pcwalton | bors | -13/+73 | |
| 2013-03-29 | tutorial: add an example of freezing a managed box | Daniel Micay | -4/+15 | |
| 2013-03-29 | tutorial: improve the managed boxes section | Daniel Micay | -0/+14 | |
| 2013-03-29 | tutorial: improve the owned boxes section | Daniel Micay | -5/+40 | |
| 2013-03-29 | tutorial: use "owned box" consistently | Daniel Micay | -4/+4 | |
| 2013-03-29 | auto merge of #5583 : jbclements/rust/docfix-for-block-comment-grammar, ↵ | bors | -4/+4 | |
| r=jbclements ... by adding Kleene '+' in two places, and changing a "non-slash" into "non_slash_or_star". Closes #1588 | ||||
| 2013-03-29 | auto merge of #5570 : alexcrichton/rust/fix-unused-imports, r=sanxiyn | bors | -3/+3 | |
| Before it wouldn't warn about unused imports in the list if something in the list was used. These commits fix that case, add a test, and remove all unused imports in lists of imports throughout the compiler. | ||||
| 2013-03-28 | Removing unused imports | Alex Crichton | -3/+3 | |
| 2013-03-28 | tutorial: only Owned types can have a Drop impl | Daniel Micay | -1/+3 | |
| 2013-03-28 | tutorial: cleaner libc use statements | Daniel Micay | -5/+2 | |
| 2013-03-28 | added defn of non_slash_or_star | John Clements | -2/+2 | |
| 2013-03-28 | fix another subtle bug in comment regex | John Clements | -2/+2 | |
| 2013-03-27 | fixes stated grammar for block comments, by adding Kleene '+' in two places. | John Clements | -2/+2 | |
| Closes #1588 | ||||
| 2013-03-26 | test: Fix tests | Patrick Walton | -8/+8 | |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -11/+11 | |
| 2013-03-26 | doc: Remove mentions of oldmap::HashMap | Alex Crichton | -5/+5 | |
| 2013-03-26 | auto merge of #5549 : brson/rust/rustdoc, r=brson | bors | -0/+5 | |
| r? | ||||
| 2013-03-26 | rustdoc: Tweak list style | Brian Anderson | -0/+5 | |
| 2013-03-26 | Updated to reflect alpha-rename of constant/static items section. | Felix S. Klock II | -4/+2 | |
| 2013-03-26 | Miscellaneous documentation additions. | Felix S. Klock II | -1/+33 | |
| Added notes explaining how [expr, ..expr] form is used, targeted at individuals like me who thought it was more general and handled dynamic repeat expressions. (I left a TODO for this section in a comment, but perhaps that is bad form for the manual...) Added example of `do` syntax with a function of arity > 1; yes, one should be able to derive this from the text above it, but it is still a useful detail to compare and contrast against the arity == 1 case. Added example of using for expression over a uint range, since someone who is most used to write `for(int i; i < lim; i++) { ... }` will likely want to know how to translate that form (regardless of whether it happens to be good style or not for their use-case). Added note about the semi-strange meaning of "fixed size" of vectors in the vector type section. | ||||
| 2013-03-25 | auto merge of #5507 : graydon/rust/fixups2, r=graydon | bors | -21/+22 | |
| Just some editing-to-reflect-reality on release notes and manual. | ||||
| 2013-03-25 | docs: update to avoid mention of const. | Graydon Hoare | -21/+22 | |
| 2013-03-25 | auto merge of #5505 : catamorphism/rust/macro-tutorial, r=graydon | bors | -23/+27 | |
| r? @jbclements | ||||
| 2013-03-22 | libcore: Fix obsolete syntax in extfmt | Patrick Walton | -36/+30 | |
| 2013-03-22 | Copyedit macro tutorial | Tim Chevalier | -23/+27 | |
| 2013-03-22 | docs: Copyedit my randomly assigned sections of the manual | Tim Chevalier | -132/+143 | |
| 2013-03-21 | Tutorial: make struct section more coherent | Luca Bruno | -9/+18 | |
| In struct section of tutorial, make everything more coherent and clear by always using "struct Point". Also, do not prematurely introduce pointers and arrays. Fixes #5240 Signed-off-by: Luca Bruno <lucab@debian.org> | ||||
| 2013-03-19 | rewrite the tutorial section on boxes | Daniel Micay | -130/+160 | |
