| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-02-18 | Remove `i`, `is`, `u`, or `us` suffixes that are not necessary. | Niko Matsakis | -2/+2 | |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -1/+1 | |
| 2015-01-26 | Fallout of io => old_io | Alex Crichton | -1/+1 | |
| 2015-01-23 | regex: Remove in-tree version | Alex Crichton | -41/+44 | |
| The regex library was largely used for non-critical aspects of the compiler and various external tooling. The library at this point is duplicated with its out-of-tree counterpart and as such imposes a bit of a maintenance overhead as well as compile time hit for the compiler itself. The last major user of the regex library is the libtest library, using regexes for filters when running tests. This removal means that the filtering has gone back to substring matching rather than using regexes. | ||||
| 2015-01-09 | Handle errors properly in rustbook. | Huon Wilson | -3/+4 | |
| Silently ignoring errors is :( so lets not silently ignore them. huon is :) now. | ||||
| 2015-01-08 | Fix dead links in the guide and reorganize | Alex Crichton | -4/+4 | |
| 2015-01-08 | "The Rust Programming Language" | Steve Klabnik | -0/+166 | |
| This pulls all of our long-form documentation into a single document, nicknamed "the book" and formally titled "The Rust Programming Language." A few things motivated this change: * People knew of The Guide, but not the individual Guides. This merges them together, helping discoverability. * You can get all of Rust's longform documentation in one place, which is nice. * We now have rustbook in-tree, which can generate this kind of documentation. While its style is basic, the general idea is much better: a table of contents on the left-hand side. * Rather than a almost 10,000-line guide.md, there are now smaller files per section. | ||||
