Skip to content

Commit 4a6a52c

Browse files
authored
Merge pull request #204 from rust-lang/spellcheck
Get spellcheck-clean
2 parents abce013 + d7e9146 commit 4a6a52c

File tree

5 files changed

+3363
-5
lines changed

5 files changed

+3363
-5
lines changed

_posts/2015-08-14-Next-year.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ that compiling Rust code for another target should be easy:
214214
#### Cargo install
215215

216216
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
218218
simple addition to cargo, the `cargo install` command. Much like the
219219
conventional `make install`, **`cargo install` will place an executable in your
220220
path so that you can run it**. This can serve as a simple distribution channel,

_posts/2016-03-02-Rust-1.7.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ See the [detailed release notes][notes] for more.
8888
There were a few small updates to Cargo:
8989

9090
* 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.
9292
This should help development quite a bit in repositories with build scripts.
9393
* A [modification to the `cargo rustc` subcommand], which allows specifying
9494
profiles to pull in dev-dependencies during testing and such.

_posts/2016-04-19-MIR.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ fn send_if(data: Vec<Data>) {
489489
```
490490

491491
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
493493
have been moved. (This is yet another example of where we can do
494494
things in MIR that we would not want to allow in full Rust.)
495495

0 commit comments

Comments
 (0)