about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-04-19 00:54:42 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-04-19 00:54:42 +0530
commit88601f8d7d0784a2fe502193b9d98edd3e7d88ea (patch)
tree708d53e4b619fb227aefd191af1d7be2f4121d2a
parent695efb53d6b18c3a011a3f3adc10808c99f96ec7 (diff)
downloadrust-88601f8d7d0784a2fe502193b9d98edd3e7d88ea.tar.gz
rust-88601f8d7d0784a2fe502193b9d98edd3e7d88ea.zip
fix doctest (fixup #24466)
-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.
 }