about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/trpl/documentation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/documentation.md b/src/doc/trpl/documentation.md
index e130109e354..191a51dffdb 100644
--- a/src/doc/trpl/documentation.md
+++ b/src/doc/trpl/documentation.md
@@ -376,7 +376,7 @@ things, so they don’t show up in the output.
 Another case where the use of `#` is handy is when you want to ignore
 error handling. Lets say you want the following,
 
-```rust
+```rust,ignore
 /// use std::io;
 /// let mut input = String::new(); 
 /// try!(io::stdin().read_line(&mut input));