about summary refs log tree commit diff
path: root/src/libstd/prelude/mod.rs
AgeCommit message (Collapse)AuthorLines
2015-12-17doc: fix typoTshepang Lekhonkhobe-1/+1
2015-11-12Fixup #29785Manish Goregaokar-1/+1
2015-11-11Clean up the prelude docsSteve Klabnik-96/+113
This mostly brings them in line with existing linking convention, but also has some minor re-wording. The text at the top has been re-focused, by starting out with what the prelude does, rather than starting from injecting std. Also, it now mentions that other preludes exist. Part of https://github.com/rust-lang/rust/issues/29369
2015-10-14Fix the link to `Default` trait in the prelude docsGleb Kozyrev-1/+1
2015-10-08typos: fix a grabbag of typos all over the placeCristi Cobzarenco-1/+1
2015-09-04Fix typo in prelude docsMurarth-2/+2
2015-07-30doc: prelude nitsTshepang Lekhonkhobe-3/+3
2015-07-13Address feedbackBrian Anderson-2/+2
2015-07-13std: Refining crate docsBrian Anderson-7/+96
Yet another attempt to make the prose on the std crate page clearer and more informative. This does a lot of things: tightens up the opening, adds useful links (including a link to the search bar), offers guidance on how to use the docs, and expands the prelude docs as a useful newbie entrypoint.
2015-05-13Rollup merge of #25224 - brson:stddoc, r=steveklabnikSteve Klabnik-1/+1
Attempted to organize them in a way more relevant to what newbies would be interested in hearing. I am not satisfied by this at all, but by virtue of deleting old links alone I think it is an improvement. r? @steveklabnik
2015-05-08std: Update crate docsBrian Anderson-1/+1
Attempted to organize them in a way more relevant to what newbies would be interested in hearing.
2015-05-09Squeeze the last bits of `task`s in documentation in favor of `thread`Barosl Lee-1/+1
An automated script was run against the `.rs` and `.md` files, subsituting every occurrence of `task` with `thread`. In the `.rs` files, only the texts in the comment blocks were affected.
2015-01-23grandfathered -> rust1Brian Anderson-1/+1
2015-01-23Deprecated attributes don't take 'feature' names and are paired with ↵Brian Anderson-1/+0
stable/unstable Conflicts: src/libcore/atomic.rs src/libcore/finally.rs src/test/auxiliary/inherited_stability.rs src/test/auxiliary/lint_stability.rs
2015-01-21Add 'feature' and 'since' to stability attributesBrian Anderson-2/+2
2015-01-04std: Fix missing stability on preludeAlex Crichton-0/+2
The module itself is stable (the name)
2015-01-03Register new snapshotsJorge Aparicio-3/+0
2015-01-02std: Stabilize the prelude moduleAlex Crichton-0/+42
This commit is an implementation of [RFC 503][rfc] which is a stabilization story for the prelude. Most of the RFC was directly applied, removing reexports. Some reexports are kept around, however: * `range` remains until range syntax has landed to reduce churn. * `Path` and `GenericPath` remain until path reform lands. This is done to prevent many imports of `GenericPath` which will soon be removed. * All `io` traits remain until I/O reform lands so imports can be rewritten all at once to `std::io::prelude::*`. This is a breaking change because many prelude reexports have been removed, and the RFC can be consulted for the exact list of removed reexports, as well as to find the locations of where to import them. [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0503-prelude-stabilization.md [breaking-change] Closes #20068