@@ -20,12 +20,12 @@ series of small examples.
20
20
21
21
[ rbe ] : http://rustbyexample.com/
22
22
23
- # Specification
23
+ # Language Reference
24
24
25
- Rust does not have an exact specification, but an effort to describe as much of
25
+ Rust does not have an exact specification yet , but an effort to describe as much of
26
26
the language in as much detail as possible is in [ the reference] ( reference.html ) .
27
27
28
- # The Standard Library
28
+ # Standard Library Reference
29
29
30
30
We have [ API documentation for the entire standard
31
31
library] ( std/index.html ) . There's a list of crates on the left with more
@@ -34,13 +34,15 @@ something if you know its name.
34
34
35
35
# Tools
36
36
37
- Rust is still a young language, so there isn't a ton of tooling yet, but the
38
- tools we have are really nice .
37
+ [ Cargo ] ( https://crates.io ) is the Rust's package manager providing access to libraries
38
+ beyond the standard one, and its website contains lots of good documentation .
39
39
40
- [ Cargo ] ( https://crates.io ) is Rust's package manager, and its website contains
41
- lots of good documentation .
40
+ [ ` rustdoc ` ] ( book/documentation.html ) is the Rust's documentation generator, a tool converting
41
+ annotated source code into HTML docs .
42
42
43
- [ ` rustdoc ` ] ( book/documentation.html ) is used to generate documentation for Rust code.
43
+ A bunch of non-official tools are available, such as [ Racer] ( https://github.com/phildawes/racer )
44
+ (code completion engine), or [ rustfmt] ( https://github.com/nrc/rustfmt ) (source code formatter),
45
+ or text editor plugins.
44
46
45
47
# Community & Getting Help
46
48
0 commit comments