Skip to content

Commit f684a8a

Browse files
committed
Mention rust tool in the tutorial
1 parent acc1477 commit f684a8a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

doc/tutorial.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,9 @@ for more information on them.
114114

115115
When complete, `make install` will place several programs into
116116
`/usr/local/bin`: `rustc`, the Rust compiler; `rustdoc`, the
117-
API-documentation tool; `cargo`, the Rust package manager;
118-
and `rusti`, the Rust REPL.
117+
API-documentation tool; `rustpkg`, the Rust package manager;
118+
`rusti`, the Rust REPL; and `rust`, a tool which acts as a unified way to
119+
call them, either directly or with common command line arguments.
119120

120121
[wiki-start]: https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
121122
[tarball]: http://static.rust-lang.org/dist/rust-0.5.tar.gz
@@ -2184,7 +2185,7 @@ impl Circle for CircleStruct {
21842185
}
21852186
impl Shape for CircleStruct {
21862187
fn area(&self) -> float { pi * square(self.radius) }
2187-
}
2188+
}
21882189
~~~~
21892190

21902191
Notice that methods of `Circle` can call methods on `Shape`, as our

0 commit comments

Comments
 (0)