| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-04-22 | Auto merge of #49757 - GuillaumeGomez:never-search, r=QuietMisdreavus | bors | -0/+10 | |
| Add specific never search Fixes #49529. r? @QuietMisdreavus | ||||
| 2018-04-21 | add more aliases | Guillaume Gomez | -0/+7 | |
| 2018-04-21 | Generate alias file | Guillaume Gomez | -0/+3 | |
| 2018-04-21 | Add back missing `#![feature(never_type)]`s | kennytm | -0/+2 | |
| 2018-03-26 | Fix missed i128 feature gates | Mark Mansi | -2/+2 | |
| 2018-03-14 | stabilise feature(never_type) | Andrew Cann | -6/+5 | |
| Replace feature(never_type) with feature(exhaustive_patterns). feature(exhaustive_patterns) only covers the pattern-exhaustives checks that used to be covered by feature(never_type) | ||||
| 2018-02-11 | Make primitive types docs relevant | Guillaume Gomez | -48/+0 | |
| 2017-12-12 | Rename never_type_impls gate to never_type | Andrew Cann | -1/+1 | |
| 2017-12-10 | Update never_type docs based on feedback | Andrew Cann | -1/+2 | |
| 2017-11-28 | Add more links to `!` doc text | Andrew Cann | -18/+28 | |
| 2017-11-24 | Fix doc tests | Andrew Cann | -9/+22 | |
| 2017-11-24 | change stability of prim_never | Andrew Cann | -1/+1 | |
| 2017-11-24 | Add docs for never primitive | Andrew Cann | -0/+104 | |
| 2017-10-17 | Update array documentation for Clone trait changes | Konrad Borowski | -3/+4 | |
| 2017-09-20 | Document stable size_of primitives and pointer size guarantees | Havvy | -0/+8 | |
| 2017-08-22 | Mention null_mut on the pointer primitive docs. | Nathaniel Ringo | -3/+5 | |
| Also adds a few mentions that both `*const` and `*mut` support functions, when only `*const` was mentioned before. | ||||
| 2017-08-17 | Minor rewrite of char primitive unicode intro. | Corey Farwell | -13/+18 | |
| Opened primarily to address #36998. | ||||
| 2017-08-12 | Fix some typos | Bastien Orivel | -1/+1 | |
| 2017-08-01 | add documentation for function pointers as a primitive | QuietMisdreavus | -0/+101 | |
| 2017-07-30 | add docs for references as a primitive | QuietMisdreavus | -0/+117 | |
| 2017-06-23 | Removed as many "```ignore" as possible. | kennytm | -2/+4 | |
| Replaced by adding extra imports, adding hidden code (`# ...`), modifying examples to be runnable (sorry Homura), specifying non-Rust code, and converting to should_panic, no_run, or compile_fail. Remaining "```ignore"s received an explanation why they are being ignored. | ||||
| 2017-04-12 | Rollup merge of #41243 - projektir:prim_str_docs, r=GuillaumeGomez | Tim Neumann | -4/+4 | |
| Minor nits in primitive str Some minor updates to linking, added some links, doc format, etc. r? @GuillaumeGomez | ||||
| 2017-04-12 | Minor nits in primitive str | projektir | -4/+4 | |
| 2017-04-10 | Fixes incorrect formatting in array's documentation. | Nathaniel Ringo | -1/+1 | |
| 2017-03-31 | Rollup merge of #40703 - GuillaumeGomez:pointer-docs, r=steveklabnik | Corey Farwell | -4/+9 | |
| Add missing urls in ptr docs r? @rust-lang/docs | ||||
| 2017-03-21 | Add missing urls in ptr docs | Guillaume Gomez | -4/+9 | |
| 2017-03-20 | Fix up various links | steveklabnik | -2/+2 | |
| The unstable book, libstd, libcore, and liballoc all needed some adjustment. | ||||
| 2017-03-13 | Remove function invokation parens from documentation links. | Corey Farwell | -3/+3 | |
| This was never established as a convention we should follow in the 'More API Documentation Conventions' RFC: https://github.com/rust-lang/rfcs/blob/master/text/1574-more-api-documentation-conventions.md | ||||
| 2017-02-20 | Revert "Fix up links" | Steve Klabnik | -1/+1 | |
| 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-13 | Fix up links | Steve Klabnik | -1/+1 | |
| mdbook and rustdoc generate links differently, so we need to change all these links. | ||||
| 2017-01-24 | Add missing urls for array docs | Guillaume Gomez | -21/+22 | |
| 2017-01-21 | Specify the result of integer cast on boolean | Guillaume Gomez | -1/+9 | |
| 2017-01-15 | rustdoc: Give primitive types stability attributes | Oliver Middleton | -0/+22 | |
| This is especially important for i128/u128 to make it clear they are unstable in the docs. | ||||
| 2017-01-05 | Fix typo in tuple docs | Oliver Middleton | -1/+1 | |
| 2016-12-30 | Make rustdoc aware of the primitive i128 type | est31 | -0/+22 | |
| Many thanks to ollie27 for spotting all the places. | ||||
| 2016-10-08 | Use less `size_t` casts in libstd since it's now defined as `usize` | Tobias Bucher | -1/+1 | |
| 2016-09-11 | Tweak array docs | Keegan McAllister | -21/+65 | |
| Fixes #29331. | ||||
| 2016-08-18 | Fix links | Nick Cameron | -1/+1 | |
| 2016-08-17 | Rollup merge of #35613 - matthew-piziak:array-docs-trait-justification, ↵ | Jonathan Turner | -3/+8 | |
| r=steveklabnik provide additional justification for array interface design Explain why Rust does not implement traits for large arrays. Explain why most methods are implemented on slices rather than arrays. Note: I'm dipping my toes in the water with a tiny PR. Especially looking for feedback on wording and style. Points of concern: appropriate level of top-level explanation; foreshadowing (is it appropriate to imply that we expect Rust's type system to eventually support size-generic arrays?); using `Foo` and `Bar` as type variables instead of e.g. `T` and `S`. @peschkaj | ||||
| 2016-08-12 | provide additional justification for array interface design | Matthew Piziak | -3/+8 | |
| Explain why Rust does not implement traits for large arrays. Explain why most methods are implemented on slices rather than arrays. | ||||
| 2016-08-12 | Update note to include recommendation to use `.as_slice()` | JessRudder | -1/+2 | |
| 2016-08-11 | Add note to docs for &str that example is to demo internals only | JessRudder | -0/+3 | |
| 2016-07-08 | Improve primitive integers documentation | Guillaume Gomez | -0/+30 | |
| 2016-06-22 | Use the correct types in float examples | Oliver Middleton | -6/+0 | |
| 2016-06-01 | Fix broken link name in `bool` documentation | Matt Kraai | -1/+1 | |
| 2016-04-06 | Add `Copy` to the traits that are automatically implemented for tuples | Tobias Bucher | -2/+4 | |
| 2016-03-22 | doc: small char improvements | Tshepang Lekhonkhobe | -3/+3 | |
| 2016-03-08 | doc: Fix a bunch of broken links | Alex Crichton | -15/+15 | |
| A few categories: * Links into compiler docs were just all removed as we're not generating compiler docs. * Move up one more level to forcibly go to std docs to fix inlined documentation across the facade crates. | ||||
| 2016-03-06 | Spelling fix for "because" | Craig M. Brandenburg | -1/+1 | |
| 2016-02-25 | Add f32 and f64 examples warning | Guillaume Gomez | -0/+6 | |
