about summary refs log tree commit diff
path: root/src/doc/complement-design-faq.md
AgeCommit message (Collapse)AuthorLines
2014-10-01Update some old references to rust.mdKeegan McAllister-1/+1
2014-10-01Use relative doc URLs in top-level guidesKeegan McAllister-4/+4
2014-08-20doc: grammar fixesTshepang Lekhonkhobe-1/+1
2014-08-07Rename `Share` to `Sync`Alex Crichton-5/+5
This leaves the `Share` trait at `std::kinds` via a `#[deprecated]` `pub use` statement, but the `NoShare` struct is no longer part of `std::kinds::marker` due to #12660 (the build cannot bootstrap otherwise). All code referencing the `Share` trait should now reference the `Sync` trait, and all code referencing the `NoShare` type should now reference the `NoSync` type. The functionality and meaning of this trait have not changed, only the naming. Closes #16281 [breaking-change]
2014-08-01doc: Make sure all doc titles say 'Rust'. #12466Brian Anderson-1/+1
2014-06-16Update repo locationBrian Anderson-1/+1
2014-06-16doc: Fix a link in the FAQAlex Crichton-4/+4
Closes #14914
2014-05-25doc: add a new language design faqCorey Richardson-0/+176
This indends to help quell frequently answered questions about the language design in a single, authoritative place.