| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-18 | fix formatting | Jay True | -0/+1 | |
| 2015-01-18 | Remove redundant "Right now" | Kim Røen | -3/+2 | |
| Having both "Right now" and "at the moment" in the same statement is redundant. | ||||
| 2015-01-18 | fix an error about the static lifetime | Jay True | -1/+1 | |
| The reference should be `x`, not `FOO` itself. | ||||
| 2015-01-17 | Fix more rollup problems | Steve Klabnik | -0/+1 | |
| 2015-01-17 | docs: grammar fix | Alfie John | -1/+1 | |
| 2015-01-17 | doc: Remove extra whitespace in the middle of lines to provide alignment | Nick Howell | -70/+70 | |
| "Idiomatic code should not use extra whitespace in the middle of a line to provide alignment." http://aturon.github.io/style/whitespace.html I realize the linked page still needs an RFC, but the docs should be written in accordance with the guidelines nevertheless. | ||||
| 2015-01-17 | Add C -> Rust example to FFI chapter of the book. | Steve Klabnik | -28/+46 | |
| Fixes #10489. | ||||
| 2015-01-17 | Fix up titles of TRPL chapters | Steve Klabnik | -10/+10 | |
| 2015-01-17 | Fix typo. | Ms2ger | -1/+1 | |
| 2015-01-17 | Intpocalypse, book edition. | Steve Klabnik | -185/+187 | |
| Fix all usage of int/uint/i/u in the book. | ||||
| 2015-01-17 | Evaluate # fn in docs | Steve Klabnik | -35/+47 | |
| I searched for times when we were hiding functions with # in the documentation, and fixed them to not use it unless neccesary. I also made random improvements whenever I changed something. For example, I changed Example to Examples, for consistency. Fixes #13423 | ||||
| 2015-01-17 | Remove segmented stack info from the FFI chapter of the book. | Steve Klabnik | -23/+0 | |
| Fixes #20071. | ||||
| 2015-01-17 | Remove unnecessary explicit conversions to *const T | we | -1/+1 | |
| 2015-01-16 | syntax: Feature gate #[start] and #[main] | Alex Crichton | -4/+4 | |
| These two attributes are used to change the entry point into a Rust program, but for now they're being put behind feature gates until we have a chance to think about them a little more. The #[start] attribute specifically may have its signature changed. This is a breaking change to due the usage of these attributes generating errors by default now. If your crate is using these attributes, add this to your crate root: #![feature(start)] // if you're using the #[start] attribute #![feature(main)] // if you're using the #[main] attribute cc #20064 | ||||
| 2015-01-16 | Merge pull request #21214 from sleepynate/spacing-in-book | bors | -3/+3 | |
| Fix commented graphs in src/doc/trpl/ownership.md Reviewed-by: huonw | ||||
| 2015-01-15 | Fix commented graphs in src/doc/trpl/ownership.md | nathan dotz | -3/+3 | |
| 2015-01-15 | rollup merge of #21206: steveklabnik/expressions | Alex Crichton | -0/+18 | |
| Suggested here: http://stackoverflow.com/a/27962076/24817 | ||||
| 2015-01-15 | rollup merge of #21148: bombless/patch-1 | Alex Crichton | -1/+1 | |
| 2015-01-15 | rollup merge of #21141: tcard/master | Alex Crichton | -1/+1 | |
| Really small correction. This anti-example in the Closures section is supposed to fail because of a borrow, but it was failing at the type inference because of insufficient type information. This makes it fail for the expected reason. | ||||
| 2015-01-15 | rollup merge of #21109: steveklabnik/gh17224 | Alex Crichton | -3/+76 | |
| Fixes #17224 | ||||
| 2015-01-15 | rollup merge of #21105: csouth3/kill-box-import | Alex Crichton | -13/+0 | |
| Closes #21093. r? @steveklabnik cc @alexcrichton I tested with `make check-docs` and this passes that. Hope that was enough. | ||||
| 2015-01-15 | rollup merge of #21040: steveklabnik/gh20037 | Alex Crichton | -1/+1 | |
| Fixes #20037. | ||||
| 2015-01-15 | rollup merge of #21038: steveklabnik/gh20471 | Alex Crichton | -1/+2 | |
| Fixes #20471. | ||||
| 2015-01-15 | rollup merge of #21031: steveklabnik/gh19067 | Alex Crichton | -5/+4 | |
| Fixes #19067 | ||||
| 2015-01-15 | rollup merge of #21029: steveklabnik/gh19924 | Alex Crichton | -4/+20 | |
| Fixes #19924 | ||||
| 2015-01-15 | rollup merge of #21023: steveklabnik/gh20840 | Alex Crichton | -19/+1 | |
| Fixes #20840 | ||||
| 2015-01-15 | rollup merge of #21015: steveklabnik/gh20852 | Alex Crichton | -3/+3 | |
| Fixes #20852 | ||||
| 2015-01-15 | rollup merge of #21013: steveklabnik/gh20914 | Alex Crichton | -1/+1 | |
| Fixes #20914 | ||||
| 2015-01-15 | rollup merge of #21011: steveklabnik/gh20993 | Alex Crichton | -2/+2 | |
| Fixes #20993 | ||||
| 2015-01-15 | rollup merge of #21001: camjackson/master | Alex Crichton | -8/+1 | |
| With the code samples as they are, the compiler says: `feature has been added to Rust, directive not necessary` | ||||
| 2015-01-15 | rollup merge of #20988: ciphergoth/task-to-thread | Alex Crichton | -14/+13 | |
| "Tasks" are no longer a thing in Rust; refer to threads instead. Work is still needed on [threads.md](threads.md). | ||||
| 2015-01-15 | rollup merge of #20986: alkor/doc-fixes | Alex Crichton | -3/+12 | |
| Corrections in TRPL macros guide | ||||
| 2015-01-15 | rollup merge of #20929: laurilehmijoki/master | Alex Crichton | -1/+1 | |
| The sentence is easier to read once we move the word "again" away from the last position. | ||||
| 2015-01-15 | rollup merge of #20892: CarVac/master | Alex Crichton | -39/+39 | |
| `uint` was recently deprecated, so in following the use of `i32` in the first parts, replace all copies of `uint` with `u32`. | ||||
| 2015-01-15 | Clarify function return style. | Steve Klabnik | -0/+18 | |
| Suggested here: http://stackoverflow.com/a/27962076/24817 | ||||
| 2015-01-15 | fix wrong link | York Xiang | -1/+1 | |
| 2015-01-14 | TRPL: Anti-example failing for the wrong reason. | Toni Cárdenas | -1/+1 | |
| Really small correction. This anti-example in the Closures section is supposed to fail because of a borrow, but it was failing at the type inference because of insufficient type information. This makes it fail for the expected reason. | ||||
| 2015-01-13 | Provide example of generic inverse() | Steve Klabnik | -3/+76 | |
| Fixes #17224 | ||||
| 2015-01-13 | Remove unneeded box import in examples | Chase Southwood | -17/+0 | |
| 2015-01-13 | Replace usage of deriving with derive in docs | Greg Chapple | -1/+1 | |
| 2015-01-13 | Expand the section on closures in TRPL. | JONNALAGADDA Srinivas | -8/+35 | |
| * Include an illustration of a function that accepts two closures. | ||||
| 2015-01-12 | Match prose with code when discussing Ordering values | Adam Roben | -1/+1 | |
| Now both the enum values and the prose describing them mention the values in the same order. | ||||
| 2015-01-12 | Don't use 'synonym' with regards to newtypes | Steve Klabnik | -1/+1 | |
| Fixes #20037. | ||||
| 2015-01-12 | Elaborate on destructuring let | Steve Klabnik | -1/+2 | |
| Fixes #20471. | ||||
| 2015-01-12 | Improve the ownership guide a tad | Steve Klabnik | -4/+20 | |
| Fixes #19924 | ||||
| 2015-01-12 | Improve clarity of paragraph in the pointer guide | Steve Klabnik | -5/+4 | |
| Fixes #19067 | ||||
| 2015-01-12 | Ease parsing of an English sentence | Lauri Lehmijoki | -1/+1 | |
| 2015-01-12 | Clean up wording around uninitialized values. | Steve Klabnik | -19/+1 | |
| Fixes #20840 | ||||
| 2015-01-12 | Link to sections in the book's README.md | Steve Klabnik | -3/+3 | |
| Fixes #20852 | ||||
| 2015-01-12 | Small fix in the book | Steve Klabnik | -1/+1 | |
| Fixes #20914 | ||||
