about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Szotten <davidszotten@gmail.com>2015-09-19 11:43:32 +0100
committerDavid Szotten <davidszotten@gmail.com>2015-09-19 11:43:32 +0100
commit4e42fcd92ad0d918cb0474551601c387fa4999a3 (patch)
tree0bf17e50f246a00a0521d58bf2de1f854176c5df
parent634ffe562450278e9d77066d3607a1971353979b (diff)
downloadrust-4e42fcd92ad0d918cb0474551601c387fa4999a3.tar.gz
rust-4e42fcd92ad0d918cb0474551601c387fa4999a3.zip
link needs puncuation
-rw-r--r--src/doc/trpl/error-handling.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/error-handling.md b/src/doc/trpl/error-handling.md
index f7d5db2ddf1..6d1d2f40998 100644
--- a/src/doc/trpl/error-handling.md
+++ b/src/doc/trpl/error-handling.md
@@ -28,7 +28,7 @@ systems may want to jump around.
     * [The `Result` type](#the-result-type)
         * [Parsing integers](#parsing-integers)
         * [The `Result` type alias idiom](#the-result-type-alias-idiom)
-    * [A brief interlude: unwrapping isn't evil](#a-brief-interlude-unwrapping-isnt-evil)
+    * [A brief interlude: unwrapping isn't evil](#a-brief-interlude:-unwrapping-isn't-evil)
 * [Working with multiple error types](#working-with-multiple-error-types)
     * [Composing `Option` and `Result`](#composing-option-and-result)
     * [The limits of combinators](#the-limits-of-combinators)
@@ -41,7 +41,7 @@ systems may want to jump around.
     * [The real `try!` macro](#the-real-try!-macro)
     * [Composing custom error types](#composing-custom-error-types)
     * [Advice for library writers](#advice-for-library-writers)
-* [Case study: A program to read population data](#case-study-a-program-to-read-population-data)
+* [Case study: A program to read population data](#case-study:-a-program-to-read-population-data)
     * [Initial setup](#initial-setup)
     * [Argument parsing](#argument-parsing)
     * [Writing the logic](#writing-the-logic)