| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-12-10 | Tutorial typo fixes | Lindsey Kuper | -3/+3 | |
| 2012-12-08 | doc: Fix broken doc test. rs=bustage | Patrick Walton | -4/+4 | |
| 2012-12-07 | Xfail broken tests | Tim Chevalier | -2/+2 | |
| 2012-12-07 | doc: fix busted doctest, r=burningtree. | Graydon Hoare | -1/+1 | |
| 2012-12-06 | Document pattern ranges a little more | Tim Chevalier | -2/+7 | |
| Patches for further documentation of them welcome, but this is good enough for now. Closes #1107 | ||||
| 2012-12-06 | Be a bit more explicit about the nature of macro RHSes. | Paul Stansifer | -0/+6 | |
| 2012-12-06 | Update macro tutorial to recognize item/statement macros and be clearer | Paul Stansifer | -6/+27 | |
| about invocation location vs. interpolation location. | ||||
| 2012-11-30 | manual: Clarify that Drop types cannot be Copy | Brian Anderson | -0/+1 | |
| 2012-11-29 | Fix tutorial's use of Drop | Brian Anderson | -1/+1 | |
| 2012-11-29 | Macros can now also be stmts and items. | Paul Stansifer | -4/+4 | |
| 2012-11-26 | Fix sample code in the tutorial | Damien Grassart | -1/+2 | |
| 2012-11-24 | [tutorial] Use a less confusing closure example | Tim Chevalier | -2/+1 | |
| Closes #3996 | ||||
| 2012-11-19 | Fix breakage. Expand const examples in manual | Brian Anderson | -1/+11 | |
| 2012-11-18 | Added optional pub to use_decl EBNF. | Jesse Jones | -1/+1 | |
| 2012-11-18 | Slightly better description of macro designators. | Jesse Jones | -3/+2 | |
| Closes #3378 | ||||
| 2012-11-18 | Discuss the types that may be used with const items. | Jesse Jones | -1/+11 | |
| Also removed vector example that doesn't compile. IMO closes #3341. | ||||
| 2012-11-18 | Added brief discussion of static trait methods. | Jesse Jones | -0/+3 | |
| Closes #3339 | ||||
| 2012-11-18 | Documented copy, ref, move in patterns. | Jesse Jones | -1/+6 | |
| Closes #3337 | ||||
| 2012-11-18 | Moved the matching structs example next to the prose talking about struct ↵ | Jesse Jones | -11/+11 | |
| matching | ||||
| 2012-11-18 | Document [0, ..8] vector syntax. | Jesse Jones | -2/+6 | |
| Closes #3336 | ||||
| 2012-11-18 | Improved attribute section, mostly by mentioning lint attributes. | Jesse Jones | -6/+7 | |
| Closes #2769 | ||||
| 2012-11-18 | Added a readme explaining how to generate html from markdown docs w/o node | Jesse Jones | -0/+13 | |
| 2012-11-15 | Typo | Tim Chevalier | -1/+1 | |
| 2012-11-11 | Minor grammatical edits; use preferred nomenclature consistently. | Cat's Eye Technologies | -17/+17 | |
| 2012-11-07 | rustc: Implement the Drop trait. r=brson | Patrick Walton | -21/+24 | |
| 2012-10-29 | Fix typo in borrowed pointer tutorial. Closes #3876 | Brian Anderson | -1/+1 | |
| 2012-10-26 | Document labeled break and continue in the reference manual | Tim Chevalier | -14/+30 | |
| r=brson | ||||
| 2012-10-25 | Document how the compiler disambiguates variable patterns from variant patterns | Tim Chevalier | -3/+15 | |
| r=brson Closes #3851 | ||||
| 2012-10-23 | Remove remaining mentions of <- from docs | Tim Chevalier | -8/+3 | |
| 2012-10-23 | Remove binary move from the docs | Tim Chevalier | -40/+2 | |
| 2012-10-22 | docs: Remove unfinished sentence in manual. Closes #3806 | Brian Anderson | -1/+0 | |
| 2012-10-20 | Talk about ends, rather than means, in macro tutorial introduction. | Paul Stansifer | -5/+5 | |
| 2012-10-17 | Add examples to the parsing limitations section of the macro tutorial. | Paul Stansifer | -8/+13 | |
| (Thanks to bstrie for pointing them out!) | ||||
| 2012-10-17 | Extraneous sigil patrol: turn &[] literals into [] | Ben Striegel | -6/+6 | |
| 2012-10-17 | Sigil patrol: change fn@ fn& fn~ to @fn &fn ~fn | Ben Striegel | -25/+11 | |
| This also involves removing references to the old long-form closure syntax, which pcwalton alleges is deprecated and which was never updated for the new forms, e.g. `@fn() {}` is illegal. | ||||
| 2012-10-17 | Extraneous sigil patrol: ~"string literals" | Ben Striegel | -14/+14 | |
| 2012-10-16 | add missing pub from multifile example in sec 12.3 | Niko Matsakis | -1/+1 | |
| 2012-10-12 | Make moves explicit in doc examples | Tim Chevalier | -10/+10 | |
| Had to remove the buffalo example. It was awkward to update for explicit moves. | ||||
| 2012-10-12 | Copyedit "Items and attributes" section in docs | Tim Chevalier | -81/+44 | |
| Most notably, I removed the "foldl" example in the section on pure functions, as IIRC this is no longer something you need an unsafe block for (pure functions are as pure as their arguments). Feel free to add an example where an unsafe block really is needed. | ||||
| 2012-10-11 | Merge pull request #3734 from dbp/tutorial-fixes release-0.4 0.4 | Brian Anderson | -2/+6 | |
| tutorial: add note about mutability of vectors | ||||
| 2012-10-11 | tutorial: add note about mutability of vectors | Daniel Patterson | -2/+6 | |
| 2012-10-11 | manual: Lightly copyedit the crates section | Tim Chevalier | -40/+26 | |
| 2012-10-11 | manual: Lightly copyedit the macros section | Tim Chevalier | -17/+13 | |
| 2012-10-11 | Fix tutorial-ffi tests | Tim Chevalier | -4/+4 | |
| 2012-10-11 | manual: fix one more nit. | Graydon Hoare | -1/+1 | |
| 2012-10-11 | manual: fix accidentally broken test. | Graydon Hoare | -2/+2 | |
| 2012-10-11 | manual: remove as many ~[] literals as possible. | Graydon Hoare | -18/+18 | |
| 2012-10-11 | manual: remove as many ~"" literals as possible. | Graydon Hoare | -15/+15 | |
| 2012-10-11 | manual: fix bullet list. | Graydon Hoare | -0/+1 | |
| 2012-10-11 | manual: remove description of references (modes) from memory-slots section. | Graydon Hoare | -20/+2 | |
