| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2017-07-14 | Update the books. | steveklabnik | -0/+0 | |
| 2017-07-10 | Test src/doc once more | Mark Simulacrum | -0/+0 | |
| 2017-06-01 | Update various book repos for the next release. | steveklabnik | -0/+0 | |
| 2017-05-04 | update to latest nomicon | Alexis Beingessner | -0/+0 | |
| 2017-03-27 | Update various book modules | steveklabnik | -0/+0 | |
| This includes an important fix for rustc contributors in https://github.com/rust-lang/book/pull/571 I'm going to update the other ones as well here while we're at it; no need to spam PRs. | ||||
| 2017-03-04 | import nomicon submodule | steveklabnik | -0/+0 | |
| 2017-03-04 | remove nomicon | steveklabnik | -5645/+0 | |
| 2017-02-25 | Rollup merge of #40069 - Rufflewind:master, r=steveklabnik | Eduard-Mihai Burtescu | -2/+20 | |
| Add Gankro's table to nomicon/src/phantom-data.md Original: https://github.com/rust-lang/rust/issues/30069#issuecomment-159928136 Testing confirms that: - `PhantomData<fn() -> T>` does not actually enable drop checking. - `PhantomData<fn(T) -> T>` is neither variant nor contravariant. | ||||
| 2017-02-25 | Add Gankro's table to nomicon/src/phantom-data.md | Phil Ruffwind | -2/+20 | |
| Original: https://github.com/rust-lang/rust/issues/30069#issuecomment-159928136 Testing confirms that: - PhantomData<fn() -> T> does not actually enable drop checking. - PhantomData<fn(T) -> T> is neither variant nor contravariant. | ||||
| 2017-02-23 | Update exception-safety.md | Luxko | -1/+1 | |
| 2017-02-23 | Update exception-safety.md | Luxko | -1/+1 | |
| Fix variable name typo | ||||
| 2017-02-20 | Revert "Fix up links" | Steve Klabnik | -2/+2 | |
| This reverts commit 7f1d1c6d9a7be5e427bace30e740b16b25f25c92. The original commit was created because mdBook and rustdoc had different generation algorithms for header links; now with https://github.com/rust-lang/rust/pull/39966 , the algorithms are the same. So let's undo this change. ... when I came across this problem, I said "eh, this isn't fun, but it doesn't take that long." I probably should have just actually taken the time to fix upstream, given that they were amenable. Oh well! | ||||
| 2017-02-15 | Remove obsolete documentation about drop-flags | Jeff Muizelaar | -14/+2 | |
| 2017-02-13 | Fix up links | Steve Klabnik | -2/+2 | |
| mdbook and rustdoc generate links differently, so we need to change all these links. | ||||
| 2017-02-13 | Port Nomicon to mdbook | Steve Klabnik | -106/+105 | |
| 1. move everything under a src directory 2. add README.md to the SUMMARY.md | ||||
| 2017-02-13 | Re-implement rustbook in terms of mdbook | Steve Klabnik | -0/+4 | |
| mdbook has a lot of optional dependencies that we don't want, so instead of using it directly, we re-build rustbook to use mdbook as a library. For convenience' sake, we keep the same CLI interface as mdbook; the only difference is that it only accepts build and test subcommands, rather than the full range. | ||||
| 2017-02-02 | Rollup merge of #39196 - apasel422:nomicon, r=petrochenkov | Guillaume Gomez | -6/+24 | |
| Update nomicon to describe `#[may_dangle]` CC #34761 r? @pnkfelix | ||||
| 2017-01-26 | drop_in_place is stable now, don't #![feature] it in the nomicon and a test | est31 | -3/+3 | |
| It was stable since Rust 1.8. | ||||
| 2017-01-19 | Update nomicon to describe `#[may_dangle]` | Andrew Paseltiner | -6/+24 | |
| 2017-01-11 | Fix some typos in Nomicon | Ben Wiederhake | -2/+2 | |
| 2017-01-10 | Rollup merge of #38816 - Manishearth:coercion-doc, r=GuillaumeGomez | Seo Sanghyeon | -1/+3 | |
| Add more docs for CoerceUnsized and Unsize here be dragons r? @ubsan @steveklabnik | ||||
| 2017-01-04 | Add more docs for CoerceUnsized and Unsize | Manish Goregaokar | -1/+3 | |
| 2017-01-02 | Reword 'stupid' and 'crazy' in docs. | Clar Charr | -10/+10 | |
| 2016-09-07 | Fixed typo in nomicon | Jakob Demler | -1/+1 | |
| 2016-09-04 | Remove mention of `unsafe_no_drop_flag` from Reference and Nomicon | Andrew Paseltiner | -4/+0 | |
| 2016-07-21 | doc: add missing pause | Tshepang Lekhonkhobe | -2/+1 | |
| 2016-07-16 | Rollup merge of #34849 - tshepang:patch-2, r=apasel422 | Guillaume Gomez | -1/+1 | |
| doc: remove extraneous word | ||||
| 2016-07-16 | Rollup merge of #34848 - tshepang:patch-1, r=apasel422 | Guillaume Gomez | -1/+1 | |
| doc: remove stray comma | ||||
| 2016-07-16 | doc: remove extraneous word | Tshepang Lekhonkhobe | -1/+1 | |
| 2016-07-16 | doc: remove stray comma | Tshepang Lekhonkhobe | -1/+1 | |
| 2016-07-16 | Add missing inline code delimiters around Vec<T> | Bastien Dejean | -1/+1 | |
| 2016-06-09 | Auto merge of #33895 - AndrewBrinker:master, r=steveklabnik | bors | -137/+114 | |
| Rewrote "How Safe and Unsafe Interact" Nomicon chapter. The previous version of the chapter covered a lot of ground, but was a little meandering and hard to follow at times. This draft is intended to be clearer and more direct, while still providing the same information as the previous version. r? @steveklabnik | ||||
| 2016-06-07 | Fixed based on feedback from steveklabnik | Andrew Brinker | -11/+7 | |
| 2016-06-01 | Rewrote "How Safe and Unsafe Interact" Nomicon chapter. | Andrew Brinker | -137/+118 | |
| The previous version of the chapter covered a lot of ground, but was a little meandering and hard to follow at times. This draft is intended to be clearer and more direct, while still providing the same information as the previous version. | ||||
| 2016-06-01 | Fix a few links in the book | Oliver Middleton | -1/+1 | |
| Links to directories and direct links to doc.rust-lang.org don't work properly when viewing the docs offline so fix them. | ||||
| 2016-05-09 | doc: Fix tiny typo in vec-alloc.md | Brian Green | -1/+1 | |
| Change `fast an loose` to `fast and loose`. | ||||
| 2016-04-23 | subtyping.md: typo fix | c4rlo | -1/+1 | |
| 2016-04-05 | improve error message | Ariel Ben-Yehuda | -1/+1 | |
| 2016-04-05 | suggest adding a where-clause when that can help | Ariel Ben-Yehuda | -1/+1 | |
| suggest adding a where-clause when there is an unmet trait-bound that can be satisfied if some type can implement it. | ||||
| 2016-03-30 | Update Rust version in the Rustonomicon Vec chapter | Matt Brubeck | -1/+1 | |
| I verified that the final code compiles in Rust 1.9.0-nightly. | ||||
| 2016-02-24 | Capitalize some occurences of Rust in documentation | Florian Hahn | -1/+1 | |
| 2016-01-17 | Fix spacing style of `T: Bound` in docs | Ulrik Sverdrup | -2/+2 | |
| The space between `T` and `Bound` is the typical style used in code and produced by rustdoc's rendering. Fixed first in Reflect's docs and then I fixed all occurrences in docs I could find. | ||||
| 2016-01-16 | Fixed indent from tabs to spaces | Jonas Tepe | -8/+8 | |
| 2016-01-16 | added zst iterator additions to final code | Jonas Tepe | -2/+10 | |
| 2016-01-16 | Semicolon was at wrong place in let statement | Jonas Tepe | -4/+4 | |
| 2016-01-07 | len needs to be prefixed by self for this to work. The final code in this ↵ | jonastepe | -2/+2 | |
| section of the book is correct. | ||||
| 2016-01-06 | heap::deallocate expects a *mut u8 but here a *mut T is given. The final ↵ | jonastepe | -1/+1 | |
| code is correct, the example here would not compile without the cast. I used *mut _ instead of *mut u8 to be consistent with the final code. | ||||
| 2015-12-17 | Change "big ask" to "tall order" in Rustonomicon. | Steve Wooster | -2/+2 | |
| The Rustonomicon's Lifetimes chapter uses the idiom "big ask", which is obscure compared to "tall order" (check Google ngrams). Also, it's easily mistaken for a typo; either "a big task" or "a big thing to ask" could plausibly work there. | ||||
| 2015-12-12 | nomicon: Mention contravariance | Ulrik Sverdrup | -4/+5 | |
| 2015-12-11 | nomicon: Fix variance in example | Ulrik Sverdrup | -1/+1 | |
| &'b mut B was described incorrectly (just in this example, is correct in the actual text). | ||||
