@@ -13,65 +13,65 @@ unofficial documentation resources as well!
1313Many of these resources take the form of "books"; we collectively call these
1414"The Rust Bookshelf." Some are large, some are small.
1515
16- ## Learn Rust
16+ # Learn Rust
1717
1818If you'd like to learn Rust, this is the spot for you! All of these resources
1919assume that you have programmed before, but not in any specific language:
2020
21- ### The Rust Programming Language
21+ ## The Rust Programming Language
2222
2323Affectionately nicknamed "the book," [ The Rust Programming
2424Language] ( book/index.html ) will give you an overview of the language from
2525first principles. You'll build a few projects along the way, and by the end,
2626you'll have a solid grasp of the language.
2727
28- ### Rust By Example
28+ ## Rust By Example
2929
3030If reading multiple hundreds of pages about a language isn't your style, then
3131[ Rust By Example] ( rust-by-example/index.html ) has you covered. While the book talks about code with
3232a lot of words, RBE shows off a bunch of code, and keeps the talking to a
3333minimum. It also includes exercises!
3434
35- ## Use Rust
35+ # Use Rust
3636
3737Once you've gotten familliar with the language, these resources can help you
3838when you're actually using it day-to-day.
3939
40- ### The Standard Library
40+ ## The Standard Library
4141
4242Rust's standard library has [ extensive API documentation] ( std/index.html ) ,
4343with explanations of how to use various things, as well as example code for
4444accomplishing various tasks.
4545
46- ### The Cargo Book
46+ ## The Cargo Book
4747
4848[ The Cargo Book] ( cargo/index.html ) is a guide to Cargo, Rust's build tool and dependency manager.
4949
50- ### The Rustdoc Book
50+ ## The Rustdoc Book
5151
5252[ The Rustdoc Book] ( rustdoc/index.html ) describes our documentation tool, ` rustdoc ` .
5353
54- ### Extended Error Listing
54+ ## Extended Error Listing
5555
5656Many of Rust's errors come with error codes, and you can request extended
5757diagnostics from the compiler on those errors. You can also [ read them
5858here] ( error-index.html ) , if you prefer to read them that way.
5959
60- ## Master Rust
60+ # Master Rust
6161
6262Once you're quite familiar with the language, you may find these advanced
6363resources useful.
6464
65- ### The Reference
65+ ## The Reference
6666
6767[ The Reference] ( reference/index.html ) is not a formal spec, but is more detailed and
6868comprehensive than the book.
6969
70- ### The Rustonomicon
70+ ## The Rustonomicon
7171
7272[ The Rustonomicon] ( nomicon/index.html ) is your guidebook to the dark arts of unsafe
7373Rust. It's also sometimes called "the 'nomicon."
7474
75- ### The Unstable Book
75+ ## The Unstable Book
7676
7777[ The Unstable Book] ( unstable-book/index.html ) has documentation for unstable features.
0 commit comments