Fix a typo

This commit is contained in:
Hajime Morrita 2015-04-07 13:19:17 -07:00
parent 1fd89b625b
commit 334422184e
1 changed files with 1 additions and 1 deletions

View File

@ -198,5 +198,5 @@ let obj = Box::new(graph) as Box<Graph<N=Node, E=Edge>>;
```
The `N=Node` syntax allows us to provide a concrete type, `Node`, for the `N`
type parameter. Same with `E=Edge`. If we didnt proide this constraint, we
type parameter. Same with `E=Edge`. If we didnt provide this constraint, we
couldnt be sure which `impl` to match this trait object to.