We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fd89b6 commit 3344221Copy full SHA for 3344221
src/doc/trpl/associated-types.md
@@ -198,5 +198,5 @@ let obj = Box::new(graph) as Box<Graph<N=Node, E=Edge>>;
198
```
199
200
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
+type parameter. Same with `E=Edge`. If we didn’t provide this constraint, we
202
couldn’t be sure which `impl` to match this trait object to.
0 commit comments