about summary refs log tree commit diff
path: root/src/doc/style/features
AgeCommit message (Collapse)AuthorLines
2016-08-25Remove style guide.Steve Klabnik-1048/+0
We originally imported this into the repository with the intent of fixing it up. Instead, nothing happened. Its appearance on rust-lang.org makes it seem semi-official, but it's not. The rustfmt strike team will end up producing something like this anyway, and leaving it around does nothing but mislead people.
2016-04-19rustbuild: Run all markdown documentation testsAlex Crichton-42/+42
This commit adds support to rustbuild to run all documentation tests, basically running `rustdoc --test` over all our documentation. This also includes support for running the error index tests.
2016-03-27Extend linkchecker with anchor checkingmitaa-3/+2
This adds checks to ensure that: * link anchors refer to existing id's on the target page * id's are unique within an html document * page redirects are valid
2016-03-08doc: Fix a bunch of broken linksAlex Crichton-1/+1
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.
2015-10-18Remove #[derive(Show)]Vadim Petrochenkov-4/+4
2015-10-13Correct spelling in docsAndrew Paseltiner-6/+6
2015-09-20doc: Fix broken linksSimon Mazur-2/+2
2015-08-09Tweak style guide to avoid referencing the removed ascii::Ascii.Eli Friedman-10/+13
2015-08-09Use https URLs to refer to rust-lang.org where appropriate.Eli Friedman-14/+13
Also fixes a few outdated links.
2015-06-23Fix grammar in style guide on traitsSteve Klabnik-1/+1
Fixes #26366
2015-06-17style: typo fixTshepang Lekhonkhobe-1/+1
2015-05-29Fix link to newtypes pageNils Liberg-1/+1
2015-05-29remove extra space from "over" code as wellDavid Campbell-1/+1
2015-05-29Update let.md -- follow whitespace style guidelineDavid Campbell-1/+1
"Idiomatic code should not use extra whitespace in the middle of a line to provide alignment."
2015-05-29Make adjancent code examples more similarCorey Farwell-2/+2
2015-05-29add newline before list in functions-and-methodsDavid Campbell-0/+1
The current version of hoedown treats lists interrupting paragraphs in the Markdown.pl style rather than CommonMark, so a newline is needed for the list to be rendered properly.
2015-05-28remove references to IoResultSteve Klabnik-1/+1
This is now std::io::Result
2015-05-27Remove mentions of int / uint from public documentationJake Goulding-12/+12
2015-02-16Import rust-guidlinesSteve Klabnik-0/+1046
at https://github.com/rust-lang/rust-guidelines/commit/16fa41b3b091e7e532c809c7145dd88b8e4a5513 Fixes #19315