about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-04-09 15:55:12 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-04-10 00:24:45 +0530
commitce825ab37be02174863c91fdabc3b64ca7a1ac9f (patch)
treeb0b4d7f5ddd332a83fefffbe38a06661d5014531
parent27ecaa236b78e1e12d3682756d381c5dea6365d4 (diff)
parent334422184eebb108b54d7c0a19e186ebb06e89ee (diff)
downloadrust-ce825ab37be02174863c91fdabc3b64ca7a1ac9f.tar.gz
rust-ce825ab37be02174863c91fdabc3b64ca7a1ac9f.zip
Rollup merge of #24170 - omo:omo-typo-fix, r=steveklabnik
 Can anyone take a look? Very trivial.
-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.