Skip to content

Commit

Permalink
guide-ownership.md, guide-testing.md: fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: Philipp Gesang <phg@phi-gamma.net>
  • Loading branch information
Philipp Gesang committed Dec 16, 2014
1 parent 42deaa5 commit c1b69c7
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
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
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 c1b69c7

Please sign in to comment.