about summary refs log tree commit diff
path: root/src/doc/guide-error-handling.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/guide-error-handling.md')
-rw-r--r--src/doc/guide-error-handling.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/guide-error-handling.md b/src/doc/guide-error-handling.md
index 6bb91845f5d..71ca8913ab3 100644
--- a/src/doc/guide-error-handling.md
+++ b/src/doc/guide-error-handling.md
@@ -2,7 +2,7 @@
 
 > The best-laid plans of mice and men
 > Often go awry
-> 
+>
 > "Tae a Moose", Robert Burns
 
 Sometimes, things just go wrong. It's important to have a plan for when the
@@ -76,7 +76,7 @@ fn main() {
 
 This will give us an error:
 
-```{ignore}
+```{notrust}
 error: non-exhaustive patterns: `_` not covered [E0004]
 ```
 
@@ -189,7 +189,7 @@ panic!("boom");
 
 gives
 
-```{ignore}
+```{notrust}
 task '<main>' panicked at 'boom', hello.rs:2
 ```