@@ -13,65 +13,65 @@ unofficial documentation resources as well!
13
13
Many of these resources take the form of "books"; we collectively call these
14
14
"The Rust Bookshelf." Some are large, some are small.
15
15
16
- ## Learn Rust
16
+ # Learn Rust
17
17
18
18
If you'd like to learn Rust, this is the spot for you! All of these resources
19
19
assume that you have programmed before, but not in any specific language:
20
20
21
- ### The Rust Programming Language
21
+ ## The Rust Programming Language
22
22
23
23
Affectionately nicknamed "the book," [ The Rust Programming
24
24
Language] ( book/index.html ) will give you an overview of the language from
25
25
first principles. You'll build a few projects along the way, and by the end,
26
26
you'll have a solid grasp of the language.
27
27
28
- ### Rust By Example
28
+ ## Rust By Example
29
29
30
30
If reading multiple hundreds of pages about a language isn't your style, then
31
31
[ Rust By Example] ( rust-by-example/index.html ) has you covered. While the book talks about code with
32
32
a lot of words, RBE shows off a bunch of code, and keeps the talking to a
33
33
minimum. It also includes exercises!
34
34
35
- ## Use Rust
35
+ # Use Rust
36
36
37
37
Once you've gotten familliar with the language, these resources can help you
38
38
when you're actually using it day-to-day.
39
39
40
- ### The Standard Library
40
+ ## The Standard Library
41
41
42
42
Rust's standard library has [ extensive API documentation] ( std/index.html ) ,
43
43
with explanations of how to use various things, as well as example code for
44
44
accomplishing various tasks.
45
45
46
- ### The Cargo Book
46
+ ## The Cargo Book
47
47
48
48
[ The Cargo Book] ( cargo/index.html ) is a guide to Cargo, Rust's build tool and dependency manager.
49
49
50
- ### The Rustdoc Book
50
+ ## The Rustdoc Book
51
51
52
52
[ The Rustdoc Book] ( rustdoc/index.html ) describes our documentation tool, ` rustdoc ` .
53
53
54
- ### Extended Error Listing
54
+ ## Extended Error Listing
55
55
56
56
Many of Rust's errors come with error codes, and you can request extended
57
57
diagnostics from the compiler on those errors. You can also [ read them
58
58
here] ( error-index.html ) , if you prefer to read them that way.
59
59
60
- ## Master Rust
60
+ # Master Rust
61
61
62
62
Once you're quite familiar with the language, you may find these advanced
63
63
resources useful.
64
64
65
- ### The Reference
65
+ ## The Reference
66
66
67
67
[ The Reference] ( reference/index.html ) is not a formal spec, but is more detailed and
68
68
comprehensive than the book.
69
69
70
- ### The Rustonomicon
70
+ ## The Rustonomicon
71
71
72
72
[ The Rustonomicon] ( nomicon/index.html ) is your guidebook to the dark arts of unsafe
73
73
Rust. It's also sometimes called "the 'nomicon."
74
74
75
- ### The Unstable Book
75
+ ## The Unstable Book
76
76
77
77
[ The Unstable Book] ( unstable-book/index.html ) has documentation for unstable features.
0 commit comments