Fix some typos

This commit is contained in:
Vadim Petrochenkov 2015-03-28 18:09:51 +03:00
parent 227b46bded
commit 1accaa9f86
23 changed files with 24 additions and 24 deletions

View file

@ -170,7 +170,7 @@ let obj = Box::new(graph) as Box<Graph>;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
```
We cant create a trait object like this, becuase we dont know the associated
We cant create a trait object like this, because we dont know the associated
types. Instead, we can write this:
```rust

View file

@ -529,7 +529,7 @@ This will create documentation for bar both inside the documentation for the
crate `foo`, as well as the documentation for your crate. It will use the same
documentation in both places.
This behavior can be supressed with `no_inline`:
This behavior can be suppressed with `no_inline`:
```ignore
extern crate foo;