about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/trpl/move-semantics.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/move-semantics.md b/src/doc/trpl/move-semantics.md
index 0e7a1130561..b5bd53e1d75 100644
--- a/src/doc/trpl/move-semantics.md
+++ b/src/doc/trpl/move-semantics.md
@@ -40,7 +40,7 @@ println!("v[0] is: {}", v[0]);
 A similar thing happens if we define a function which takes ownership, and
 try to use something after we’ve passed it as an argument:
 
-```rust
+```rust,ignore
 fn take(v: Vec<i32>) {
     // what happens here isn’t important.
 }