diff options
| author | Stephan Hügel <urschrei@gmail.com> | 2016-08-11 20:37:26 +0200 |
|---|---|---|
| committer | Stephan Hügel <urschrei@gmail.com> | 2016-08-11 20:37:26 +0200 |
| commit | 31da7f6f25946e2962df78920727d3d593346cee (patch) | |
| tree | 5187c3c0e4dad77b225e448d15f12f033fac1555 /src/doc | |
| parent | 2ed052d82ffdeb57c479d78a00f680fb4fef9732 (diff) | |
| download | rust-31da7f6f25946e2962df78920727d3d593346cee.tar.gz rust-31da7f6f25946e2962df78920727d3d593346cee.zip | |
More clarification
Diffstat (limited to 'src/doc')
| -rw-r--r-- | src/doc/book/associated-types.md | 2 |
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: |
