about summary refs log tree commit diff
path: root/src/libstd/prelude/mod.rs
AgeCommit message (Collapse)AuthorLines
2019-02-13Convert old doc links to current editionLzu Tao-4/+4
Use footnote style to bypass the tidy check
2019-01-17Document Unpin in std::prelude documentationKonrad Borowski-2/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-01-15Reexport -> re-export in prose and documentation commentsCarol (Nichols || Goulding)-1/+1
2017-08-27Move unused-extern-crate to late passTatsuyuki Ishi-0/+1
2017-06-23Removed as many "```ignore" as possible.kennytm-2/+3
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-06-15Update older URLs pointing to the first edition of the BookWonwoo Choi-4/+4
`compiler-plugins.html` is moved into the Unstable Book. Explanation is slightly modified to match the change.
2017-04-06Fix Markdown issues in the docsOliver Middleton-6/+6
* Since the switch to pulldown-cmark reference links need a blank line before the URLs. * Reference link references are not case sensitive. * Doc comments need to be indented uniformly otherwise rustdoc gets confused.
2017-03-13Remove function invokation parens from documentation links.Corey Farwell-4/+4
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
2016-03-04End stdlib module summaries with a full stop.Steve Klabnik-1/+1
Fixes #9447
2016-02-10mod.rs: fix typoScott Whittaker-1/+1
"destructors" was misspelled.
2016-02-09mod.rs: fix typoScott Whittaker-1/+1
"particularly" was misspelled.
2016-02-08Fixing typo in prelude documentationKenneth Koski-1/+1
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