about summary refs log tree commit diff
diff options
context:
space:
mode:
authorchristopherdumas <christopherdumas@me.com>2015-09-15 10:37:52 -0700
committerchristopherdumas <christopherdumas@me.com>2015-09-15 10:37:52 -0700
commite66a1dcde9dbfe8139d1a6e292964144ceac6632 (patch)
treed326768c0620f522952f577a5eb7c7028c39ac92
parent0b7e048378a8f6328a8111dc0395db26f613f2ef (diff)
downloadrust-e66a1dcde9dbfe8139d1a6e292964144ceac6632.tar.gz
rust-e66a1dcde9dbfe8139d1a6e292964144ceac6632.zip
Fixe heading
-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 f4a156ee921..e335d59b192 100644
--- a/src/doc/trpl/error-handling.md
+++ b/src/doc/trpl/error-handling.md
@@ -120,7 +120,7 @@ It would be better if we just showed the code for unwrapping because it is so
 simple, but to do that, we will first need to explore the `Option` and `Result`
 types. Both of these types have a method called `unwrap` defined on them.
 
-### The `Option` type
+## The `Option` type
 
 The `Option` type is [defined in the standard library][5]: