about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/trpl/loops.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/loops.md b/src/doc/trpl/loops.md
index 91ff832a19a..a91fb8dadaf 100644
--- a/src/doc/trpl/loops.md
+++ b/src/doc/trpl/loops.md
@@ -6,7 +6,7 @@ Rust currently provides three approaches to performing some kind of iterative ac
 
 The infinite `loop` is the simplest form of loop available in Rust. Using the keyword `loop`, Rust provides a way to loop indefinitely until some terminating statement is reached. Rust's infinite `loop`s look like this:
 
-```rust
+```rust,ignore
 loop {
     println!("Loop forever!");
 }