File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -114,8 +114,9 @@ for more information on them.
114
114
115
115
When complete, ` make install ` will place several programs into
116
116
` /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.
119
120
120
121
[ wiki-start ] : https://github.com/mozilla/rust/wiki/Note-getting-started-developing-Rust
121
122
[ tarball ] : http://static.rust-lang.org/dist/rust-0.5.tar.gz
@@ -2184,7 +2185,7 @@ impl Circle for CircleStruct {
2184
2185
}
2185
2186
impl Shape for CircleStruct {
2186
2187
fn area(&self) -> float { pi * square(self.radius) }
2187
- }
2188
+ }
2188
2189
~~~~
2189
2190
2190
2191
Notice that methods of ` Circle ` can call methods on ` Shape ` , as our
You can’t perform that action at this time.
0 commit comments