about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorStephan Hügel <urschrei@gmail.com>2016-08-11 20:37:26 +0200
committerStephan Hügel <urschrei@gmail.com>2016-08-11 20:37:26 +0200
commit31da7f6f25946e2962df78920727d3d593346cee (patch)
tree5187c3c0e4dad77b225e448d15f12f033fac1555 /src/doc
parent2ed052d82ffdeb57c479d78a00f680fb4fef9732 (diff)
downloadrust-31da7f6f25946e2962df78920727d3d593346cee.tar.gz
rust-31da7f6f25946e2962df78920727d3d593346cee.zip
More clarification
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/book/associated-types.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/book/associated-types.md b/src/doc/book/associated-types.md
index d64a4beacdd..0998a88c4d2 100644
--- a/src/doc/book/associated-types.md
+++ b/src/doc/book/associated-types.md
@@ -67,7 +67,7 @@ trait Graph {
 Simple enough. Associated types use the `type` keyword, and go inside the body
 of the trait, with the functions.
 
-These `type` declarations work in the same way as those for functions do. For example,
+These type declarations work the same way as those for functions. For example,
 if we wanted our `N` type to implement `Display`, so we can print the nodes out,
 we could do this: