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.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/guide-error-handling.md b/src/doc/guide-error-handling.md
index e2a706e59f0..6bb91845f5d 100644
--- a/src/doc/guide-error-handling.md
+++ b/src/doc/guide-error-handling.md
@@ -76,7 +76,7 @@ fn main() {
 
 This will give us an error:
 
-```{notrust,ignore}
+```{ignore}
 error: non-exhaustive patterns: `_` not covered [E0004]
 ```
 
@@ -189,7 +189,7 @@ panic!("boom");
 
 gives
 
-```{notrust,ignore}
+```{ignore}
 task '<main>' panicked at 'boom', hello.rs:2
 ```