| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2014-08-21 | auto merge of #16635 : steveklabnik/rust/ordering_comment, r=huonw | bors | -5/+4 | |
| This way people won't try to copy/paste it in. This is provided as an alternate solution to #16003. What do you think, @treeman? | ||||
| 2014-08-21 | fix module wording in guide | Steve Klabnik | -3/+5 | |
| @kimundi was a bit worried this was misleading. | ||||
| 2014-08-21 | auto merge of #16487 : steveklabnik/rust/guide_ownership, r=brson | bors | -0/+167 | |
| Whew. This section was so important, I saved it for last. /cc @wycats, @nikomatsakis | ||||
| 2014-08-21 | auto merge of #16471 : EduardoBautista/rust/chapter-14-fixes, r=steveklabnik | bors | -40/+40 | |
| Just some small fixes for the guide. The cargo stuff is probably because of an update. | ||||
| 2014-08-21 | auto merge of #16447 : steveklabnik/rust/guide_vectors_extra, r=brson | bors | -0/+13 | |
| Can't believe I forgot this! | ||||
| 2014-08-21 | auto merge of #16331 : steveklabnik/rust/guide_macros_and_unsafe, r=brson | bors | -4/+177 | |
| The last two sections of the guide, and a small conclusion. I suck at conclusions. I also realized I never covered strings, so I'm going to put that section up before we're actually 'done.' | ||||
| 2014-08-20 | Guide: unsafe | Steve Klabnik | -49/+151 | |
| 2014-08-20 | fixes some syntax highlighting annotations | Christoph Burgdorf | -4/+4 | |
| 2014-08-20 | Make note that Ordering is builtin. | Steve Klabnik | -6/+5 | |
| This way people won't try to copy/paste it in. | ||||
| 2014-08-20 | Guide: macros | Steve Klabnik | -0/+71 | |
| 2014-08-20 | auto merge of #16408 : steveklabnik/rust/guide_iterators, r=brson | bors | -2/+336 | |
| An introduction to iterators. I kinda like this, but I kinda don't. Hmmm. | ||||
| 2014-08-20 | auto merge of #16257 : steveklabnik/rust/guide_patterns, r=brson | bors | -1/+167 | |
| Fixes #4417. | ||||
| 2014-08-19 | Remove repeated section and make file path generic | Eduardo Bautista | -11/+1 | |
| 2014-08-19 | Use new Cargo starting version number | Eduardo Bautista | -21/+21 | |
| 2014-08-19 | Use new Cargo file syntax | Eduardo Bautista | -31/+41 | |
| 2014-08-19 | `input_num` is used is used instead of `guess` further in the guide | Eduardo Bautista | -3/+3 | |
| 2014-08-19 | Cargo generates "Hello, world!" instead of "Hello world!" | Eduardo Bautista | -1/+1 | |
| 2014-08-19 | Cargo begins version number at 0.0.1 instead of 0.1.0 | Eduardo Bautista | -15/+15 | |
| 2014-08-19 | auto merge of #16585 : steveklabnik/rust/random_remarks, r=pcwalton | bors | -2/+10 | |
| Fixes #15954 and #16354. | ||||
| 2014-08-19 | auto merge of #16345 : EduardoBautista/rust/fix-error-message-in-guide, ↵ | bors | -2/+2 | |
| r=steveklabnik Just some simple changes to the guide. | ||||
| 2014-08-18 | Make comment about small bias in %. | Steve Klabnik | -1/+2 | |
| Fixes #16354. | ||||
| 2014-08-18 | Explain modulo in the guide. | Steve Klabnik | -2/+9 | |
| Fixes #15954 | ||||
| 2014-08-18 | Guide: ownership | Steve Klabnik | -0/+167 | |
| 2014-08-18 | Remove 'static analysis' | Steve Klabnik | -4/+3 | |
| This has certain implications that are wrong. Fixes #16299. | ||||
| 2014-08-14 | auto merge of #16474 : MatejLach/rust/cargorun_fix, r=steveklabnik | bors | -26/+30 | |
| This fixes #16451. While moving things around, I also removed a bunch of unnecessary whitespace, however I can put it back in if that's undesired. Thanks. | ||||
| 2014-08-14 | Guide: array subscript notation | Steve Klabnik | -0/+13 | |
| 2014-08-14 | Guide: iterators | Steve Klabnik | -2/+336 | |
| 2014-08-13 | Introduce the cargo run command earlier (squashed) | Matej Lach | -26/+30 | |
| 2014-08-13 | Guide: Add missing integer type to section on if expressions | Andreas Tolfsen | -1/+1 | |
| 2014-08-12 | Guide: patterns. | Steve Klabnik | -1/+167 | |
| Fixes #4417. | ||||
| 2014-08-11 | auto merge of #16427 : brson/rust/https, r=thestinger | bors | -3/+3 | |
| 2014-08-11 | Guide: vectors | Steve Klabnik | -6/+71 | |
| 2014-08-11 | Update docs to use HTTPS for static.rust-lang.org addresses | Brian Anderson | -3/+3 | |
| cc #16123 | ||||
| 2014-08-11 | Fix some minor issues in the guide. | Peer Aramillo Irizar | -6/+6 | |
| 2014-08-08 | auto merge of #16333 : steveklabnik/rust/guide_strings, r=brson | bors | -0/+80 | |
| I _think_ this is the right place to introduce strings. It's a bit hard to talk about without understanding pointers and ownership, but you need to have some idea of what's going on... | ||||
| 2014-08-08 | Guide: method syntax | Steve Klabnik | -0/+88 | |
| 2014-08-08 | auto merge of #16309 : steveklabnik/rust/guide_tasks, r=brson | bors | -0/+146 | |
| I wasn't 100% sure of what level of detail I wanted to go into things here. For example, 1:1 vs M:N tasks seems like a better distinction to leave to the Guide. | ||||
| 2014-08-08 | Single curly braces instead of double are being used | Eduardo Bautista | -1/+1 | |
| 2014-08-08 | Update error message on compile | Eduardo Bautista | -1/+1 | |
| 2014-08-08 | auto merge of #16273 : steveklabnik/rust/guide_generics, r=brson | bors | -1/+491 | |
| 2014-08-07 | auto merge of #16206 : steveklabnik/rust/guide_lambdas, r=brson | bors | -1/+203 | |
| 2014-08-07 | Guide: Traits | Steve Klabnik | -25/+339 | |
| 2014-08-07 | Guide: strings | Steve Klabnik | -0/+80 | |
| 2014-08-07 | Guide: tasks | Steve Klabnik | -0/+146 | |
| 2014-08-07 | Guide: closures | Steve Klabnik | -1/+203 | |
| 2014-08-06 | Guide: Fix imports (times_four instead of add_four) | Daniel Hofstetter | -2/+2 | |
| 2014-08-05 | Guide: generics | Steve Klabnik | -0/+176 | |
| 2014-08-05 | auto merge of #16234 : cakebaker/rust/rename_guessing_game_rs_to_main_rs, ↵ | bors | -17/+17 | |
| r=steveklabnik Follow-up to #16215 | ||||
| 2014-08-04 | Rename guessing_game.rs to main.rs in guide | Daniel Hofstetter | -17/+17 | |
| 2014-08-04 | Rename modules.rs to main.rs in guide | Daniel Hofstetter | -3/+3 | |
