diff options
| author | Simonas Kazlauskas <github@kazlauskas.me> | 2016-01-11 21:17:54 +0200 |
|---|---|---|
| committer | Simonas Kazlauskas <github@kazlauskas.me> | 2016-01-11 21:17:54 +0200 |
| commit | 8dd7eabad79f0aad6786374bed892c0d37de89ac (patch) | |
| tree | 537da01add9adc80823d1581c59396a887afb65e | |
| parent | 0b8370c3978bb47de97ce754ea601fc1b654cd2b (diff) | |
| parent | bcf20a7cb1e44525d1d579773d3554b4ecea7442 (diff) | |
| download | rust-8dd7eabad79f0aad6786374bed892c0d37de89ac.tar.gz rust-8dd7eabad79f0aad6786374bed892c0d37de89ac.zip | |
Rollup merge of #30814 - brson:docidx, r=steveklabnik
These are the same descriptions as on the website. re https://www.reddit.com/r/rust/comments/409nlo/i_just_noticed_the_docs_nightly_all_docs_got_more/cytc4ab r? @steveklabnik
| -rw-r--r-- | src/doc/index.md | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/src/doc/index.md b/src/doc/index.md index fef9f1f369c..f8a1ec134d9 100644 --- a/src/doc/index.md +++ b/src/doc/index.md @@ -10,12 +10,28 @@ This is an index of the documentation included with the Rust compiler. For more comprehensive documentation see [the website](https://www.rust-lang.org). -[**The Rust Programming Language**](book/index.html) +[**The Rust Programming Language**][book]. Also known as "The Book", +The Rust Programming Language is the most comprehensive resource for +all topics related to Rust, and is the primary official document of +the language. -[**The Rust Reference**](reference.html) +[**The Rust Reference**][ref]. While Rust does not have a +specification, the reference tries to describe its working in +detail. It tends to be out of date. -[**The Standard Library API Reference**](std/index.html) +[**Standard Library API Reference**][api]. Documentation for the +standard library. -[**The Rustonomicon**](nomicon/index.html) +[**The Rustonomicon**][nomicon]. An entire book dedicated to +explaining how to write unsafe Rust code. It is for advanced Rust +programmers. + +[**Compiler Error Index**][err]. Extended explanations of +the errors produced by the Rust compiler. + +[book]: book/index.html +[ref]: reference.html +[api]: std/index.html +[nomicon]: nomicon/index.html +[err]: error-index.html -[**The Compiler Error Index**](error-index.html) |
