about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHajime Morrita <omo@dodgson.org>2015-04-07 13:19:17 -0700
committerHajime Morrita <omo@dodgson.org>2015-04-07 13:19:17 -0700
commit334422184eebb108b54d7c0a19e186ebb06e89ee (patch)
tree682199bd3336cee57debe4f42891d6cc7ad8bcac /src
parent1fd89b625be075e81da1791d6d22e9835512036c (diff)
downloadrust-334422184eebb108b54d7c0a19e186ebb06e89ee.tar.gz
rust-334422184eebb108b54d7c0a19e186ebb06e89ee.zip
Fix a typo
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/associated-types.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/associated-types.md b/src/doc/trpl/associated-types.md
index 7161cd33f89..d59239016d8 100644
--- a/src/doc/trpl/associated-types.md
+++ b/src/doc/trpl/associated-types.md
@@ -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 didn’t proide this constraint, we
+type parameter. Same with `E=Edge`. If we didn’t provide this constraint, we
 couldn’t be sure which `impl` to match this trait object to.