File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ that compiling Rust code for another target should be easy:
214
214
#### Cargo install
215
215
216
216
Cargo and [ crates.io] is a really great tool for distributing
217
- libaries , but it lacks any means to install executables. [ RFC 1200] describes a
217
+ libraries , but it lacks any means to install executables. [ RFC 1200] describes a
218
218
simple addition to cargo, the ` cargo install ` command. Much like the
219
219
conventional ` make install ` , ** ` cargo install ` will place an executable in your
220
220
path so that you can run it** . This can serve as a simple distribution channel,
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ See the [detailed release notes][notes] for more.
88
88
There were a few small updates to Cargo:
89
89
90
90
* An [ improvement to build scripts] that allows them to precisely inform Cargo
91
- about dependences to ensure that they’re only rerun when those files change.
91
+ about dependencies to ensure that they’re only rerun when those files change.
92
92
This should help development quite a bit in repositories with build scripts.
93
93
* A [ modification to the ` cargo rustc ` subcommand] , which allows specifying
94
94
profiles to pull in dev-dependencies during testing and such.
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ fn send_if(data: Vec<Data>) {
489
489
```
490
490
491
491
Of course, you couldn't write code like this in Rust. You're not
492
- allowed to acccess the variable ` data ` after the ` if ` , since it might
492
+ allowed to access the variable ` data ` after the ` if ` , since it might
493
493
have been moved. (This is yet another example of where we can do
494
494
things in MIR that we would not want to allow in full Rust.)
495
495
You can’t perform that action at this time.
0 commit comments