Skip to content

Commit

Permalink
Merge pull request #19940 from phi-gamma/canonical-master
Browse files Browse the repository at this point in the history
guide-ownership.md, guide-testing.md: fix typos

Reviewed-by: alexcrichton
  • Loading branch information
bors committed Dec 17, 2014
2 parents 353fb80 + c1b69c7 commit 8660347
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/doc/guide-ownership.md
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ note: `car` moved here because it has type `Car`, which is non-copyable
```

We need our `Car` to be pointed to by multiple `Wheel`s. We can't do that with
`Box<T>`, because it has a single owner. We can do t with `Rc<T>` instead:
`Box<T>`, because it has a single owner. We can do it with `Rc<T>` instead:

```rust
use std::rc::Rc;
Expand Down
2 changes: 1 addition & 1 deletion src/doc/guide-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ Let's finally check out that third section: documentation tests.

Nothing is better than documentation with examples. Nothing is worse than
examples that don't actually work, because the code has changed since the
documentation has been written. To this end, Rust supports automaticaly
documentation has been written. To this end, Rust supports automatically
running examples in your documentation. Here's a fleshed-out `src/lib.rs`
with examples:

Expand Down

0 comments on commit 8660347

Please sign in to comment.