about summary refs log tree commit diff
path: root/src/doc/style
AgeCommit message (Collapse)AuthorLines
2016-08-25Remove style guide.Steve Klabnik-2518/+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-28update features RFCErgenekon Yigit-1/+1
2016-04-28update comments RFC and code snippetsErgenekon Yigit-2/+20
2016-04-19rustbuild: Run all markdown documentation testsAlex Crichton-80/+80
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-3/+3
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-11-08Fix double word 'be'Jake Worth-2/+2
2015-10-18Remove #[derive(Show)]Vadim Petrochenkov-4/+4
2015-10-15Remove outdated Changing directory.Ryan Scheel (Havvy)-66/+0
2015-10-13Correct spelling in docsAndrew Paseltiner-6/+6
2015-10-07Rollup merge of #28878 - sourcefrog:doc-links, r=steveklabnikSteve Klabnik-0/+17
2015-10-06style guide: suggest manual links to constructorsMartin Pool-0/+17
2015-09-20doc: Fix broken linksSimon Mazur-3/+3
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-18/+17
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-29Fix mistake: "to to" -> "to"Nils 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-3/+3
This is now std::io::Result
2015-05-27Remove mentions of int / uint from public documentationJake Goulding-19/+19
2015-05-09Fix invalid references due to the automated string substitutionBarosl Lee-1/+1
2015-05-09Squeeze the last bits of `task`s in documentation in favor of `thread`Barosl Lee-26/+26
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-04-24Change name of unit test sub-module to "tests".Johannes Oertel-4/+4
Changes the style guidelines regarding unit tests to recommend using a sub-module named "tests" instead of "test" for unit tests as "test" might clash with imports of libtest.
2015-03-09doc: Fix extraneous as_slice()'s in docstringsRicho Healey-6/+6
2015-02-17remove .gitignoreSteve Klabnik-3/+0
2015-02-16fix up style guide .gitignoreSteve Klabnik-4/+0
2015-02-16clean up READMESteve Klabnik-14/+1
2015-02-16Import rust-guidlinesSteve Klabnik-0/+2567
at https://github.com/rust-lang/rust-guidelines/commit/16fa41b3b091e7e532c809c7145dd88b8e4a5513 Fixes #19315