about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorMichael Alexander <beefsack@gmail.com>2015-04-12 10:42:05 +0800
committerMichael Alexander <beefsack@gmail.com>2015-04-12 10:42:05 +0800
commit91ca622cdf8502c37a867bea02f400a8ae5e9d4c (patch)
tree252594ad690d138f07ed2c9f9750af6033d8a8af /src/doc
parent6790b0e51967b1487728d155e0800a1ed03a30d3 (diff)
downloadrust-91ca622cdf8502c37a867bea02f400a8ae5e9d4c.tar.gz
rust-91ca622cdf8502c37a867bea02f400a8ae5e9d4c.zip
Updated dead link in Traits chapter of book to point to Trait Objects chapter.
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/trpl/traits.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/traits.md b/src/doc/trpl/traits.md
index 2986de4179b..25f5c7cacc7 100644
--- a/src/doc/trpl/traits.md
+++ b/src/doc/trpl/traits.md
@@ -273,8 +273,8 @@ not, because both the trait and the type aren't in our crate.
 
 One last thing about traits: generic functions with a trait bound use
 *monomorphization* (*mono*: one, *morph*: form), so they are statically
-dispatched. What's that mean? Check out the chapter on [static and dynamic
-dispatch](static-and-dynamic-dispatch.html) for more.
+dispatched. What's that mean? Check out the chapter on [trait
+objects](trait-objects.html) for more.
 
 ## Multiple trait bounds