about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Szotten <davidszotten@gmail.com>2015-09-19 11:45:30 +0100
committerDavid Szotten <davidszotten@gmail.com>2015-09-19 11:45:30 +0100
commitf7d8b418147fe46f3d0eaba295a0111394446bb0 (patch)
tree0e30d7b36cde146839aaca191b8c81057efb304a
parent436e8d69bf7326181225cb3c0226d11efef5d8f8 (diff)
downloadrust-f7d8b418147fe46f3d0eaba295a0111394446bb0.tar.gz
rust-f7d8b418147fe46f3d0eaba295a0111394446bb0.zip
missing punctuation
-rw-r--r--src/doc/trpl/error-handling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/error-handling.md b/src/doc/trpl/error-handling.md
index 4cba68e1724..18d2fae0d75 100644
--- a/src/doc/trpl/error-handling.md
+++ b/src/doc/trpl/error-handling.md
@@ -1470,7 +1470,7 @@ representation. But certainly, this will vary depending on use cases.
 At a minimum, you should probably implement the
 [`Error`](../std/error/trait.Error.html)
 trait. This will give users of your library some minimum flexibility for
-[composing errors](#the-real-try-macro). Implementing the `Error` trait also
+[composing errors](#the-real-try!-macro). Implementing the `Error` trait also
 means that users are guaranteed the ability to obtain a string representation
 of an error (because it requires impls for both `fmt::Debug` and
 `fmt::Display`).