| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2013-03-29 | tutorial: use "owned box" consistently | Daniel Micay | -4/+4 | |
| 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-26 | test: Fix tests | Patrick Walton | -5/+5 | |
| 2013-03-26 | doc: Remove mentions of oldmap::HashMap | Alex Crichton | -2/+2 | |
| 2013-03-25 | docs: update to avoid mention of const. | Graydon Hoare | -1/+1 | |
| 2013-03-22 | libcore: Fix obsolete syntax in extfmt | Patrick Walton | -25/+19 | |
| 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 | |
| 2013-03-13 | librustc: Remove implicit self from the language, except for old-style drop ↵ | Patrick Walton | -2/+2 | |
| blocks. | ||||
| 2013-03-11 | Remove uses of log | Brian Anderson | -2/+2 | |
| 2013-03-11 | librustc: Lint the old `drop` destructor notation off | Patrick Walton | -9/+9 | |
| 2013-03-11 | doc: Remove documentation on newtype enums. | Patrick Walton | -44/+36 | |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -6/+6 | |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -3/+3 | |
| are currently inferred. New rules are coming that will require them to be explicit. All add some explicit self declarations. | ||||
| 2013-03-02 | test: Remove `fn@`, `fn~`, and `fn&` from the test suite. rs=defun | Patrick Walton | -3/+2 | |
| 2013-03-02 | librustc: Forbid chained imports and fix the logic for one-level renaming ↵ | Patrick Walton | -18/+18 | |
| imports | ||||
| 2013-02-28 | librustc: Enforce cross-crate method privacy | Patrick Walton | -2/+1 | |
| 2013-02-27 | libsyntax: Forbid `~mut` and `~const`. rs=demuting | Patrick Walton | -1/+1 | |
| 2013-02-26 | Fix unused imports in the tutorials | Alex Crichton | -0/+2 | |
| 2013-02-26 | auto merge of #5119 : Kimundi/rust/incoming, r=catamorphism | bors | -1/+1 | |
| Removed deprecated `str()` functions in int-template.rs and uint-template.rs | ||||
| 2013-02-26 | doc: Remove references to mut fields. rs=demuting | Patrick Walton | -15/+12 | |
| 2013-02-26 | Removed deprecated `str()` functions in int-template.rs and uint-template.rs | Marvin Löbel | -1/+1 | |
| 2013-02-21 | librustc: Separate the rest of the trait bounds with `+` and stop parsing ↵ | Patrick Walton | -2/+2 | |
| space-separated ones. rs=plussing | ||||
| 2013-02-19 | Rewrited section about rust tool | Marvin Löbel | -11/+8 | |
| 2013-02-19 | Give the rust tool an own section in the tutorial. | Marvin Löbel | -2/+21 | |
| 2013-02-19 | Mention rust tool in the tutorial | Marvin Löbel | -3/+4 | |
| 2013-02-15 | tests/tutorials: Get rid of `move`. | Luqman Aden | -1/+1 | |
| 2013-02-13 | update tutorial and manual to use new `impl Trait for Type` syntax | Chris Peterson | -17/+16 | |
| 2013-02-04 | Merge remote-tracking branch 'bstrie/rimov' into incoming | Brian Anderson | -1/+1 | |
| Conflicts: src/libsyntax/parse/parser.rs src/test/bench/graph500-bfs.rs src/test/bench/sudoku.rs src/test/run-pass/borrowck-mut-vec-as-imm-slice.rs src/test/run-pass/empty-mutable-vec.rs src/test/run-pass/foreach-nested.rs src/test/run-pass/swap-2.rs | ||||
| 2013-02-03 | rename map -> oldmap and mark it as deprecated | Daniel Micay | -1/+1 | |
| LinearMap is quite a bit faster, and is fully owned/sendable without requiring copies. The older std::map also doesn't use explicit self and relies on mutable fields. | ||||
| 2013-01-30 | RIMOV, round 11 | Ben Striegel | -1/+1 | |
| Last bit of mut removal, manually cleaning up outliers | ||||
| 2013-01-30 | librustc: Change `self` as a type to `Self` everywhere. r=brson | Patrick Walton | -4/+4 | |
| 2013-01-29 | Formatting cleanup. | Felix S. Klock II | -1/+0 | |
| I had put a line break in to try to stress the binding of mycircle, but generated document looks cleaner without newline. | ||||
| 2013-01-29 | Fix two code examples in main rust tutorial. | Felix S. Klock II | -5/+10 | |
| 1. The section on trait definitions of static methods should include a trait with a static method in the generated document. 2. The section on trait inheritance had a expression that appears nonsensical ("let mycircle = @mycircle") in the generated document. The text would be clearer (IMO) if we continued with the running example of CircleStruct. | ||||
| 2013-01-23 | doc: Document pattern matching on vectors | Seo Sanghyeon | -0/+12 | |
| 2013-01-20 | doc: Fix tutorial typo and remove unnecessary xfail-test | Chris Peterson | -1/+1 | |
| 2013-01-10 | doc: Fold information from the memory model interlude in the tutorial elsewhere | Patrick Walton | -9/+51 | |
| 2013-01-10 | corrected imprecision in description of mutable fields | John Clements | -2/+8 | |
| 2013-01-10 | tutorial: Remove memory model section | Brian Anderson | -70/+0 | |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -5/+5 | |
| module scope. r=tjc | ||||
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the ↵ | Patrick Walton | -5/+5 | |
| nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6. | ||||
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest ↵ | Patrick Walton | -5/+5 | |
| module scope. r=tjc | ||||
| 2013-01-04 | Merge remote-tracking branch 'superoptimizer/master' into HEAD | Brian Anderson | -1/+1 | |
| Conflicts: doc/tutorial.md | ||||
| 2013-01-03 | Fix two minor issues in the tutorial. | Mark Lacey | -2/+2 | |
| Remove an extraneous 'then', and replace 'second' with 'first'. | ||||
| 2012-12-31 | doc: Fix some typos in the tutorial and reference manual | Chris Peterson | -3/+3 | |
| 2012-12-30 | doc: make small corrections to tutorial | Andrew Paseltiner | -81/+83 | |
| 2012-12-30 | doc: Fix explanation and example of struct-like enum variants. rs=busted | Patrick Walton | -6/+6 | |
| 2012-12-29 | doc: Fix some broken tutorial examples. rs=bustage | Patrick Walton | -0/+2 | |
| 2012-12-24 | Unfortunately, we can't embed cross-crate tests in the tutorial... | Tim Chevalier | -1/+1 | |
| ...as far as I know, anyway, so I xfailed this tutorial test. | ||||
