Skip to content

Commit 3344221

Browse files
committed
Fix a typo
1 parent 1fd89b6 commit 3344221

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/trpl/associated-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,5 +198,5 @@ let obj = Box::new(graph) as Box<Graph<N=Node, E=Edge>>;
198198
```
199199

200200
The `N=Node` syntax allows us to provide a concrete type, `Node`, for the `N`
201-
type parameter. Same with `E=Edge`. If we didn’t proide this constraint, we
201+
type parameter. Same with `E=Edge`. If we didn’t provide this constraint, we
202202
couldn’t be sure which `impl` to match this trait object to.

0 commit comments

Comments
 (0)