From 88601f8d7d0784a2fe502193b9d98edd3e7d88ea Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sun, 19 Apr 2015 00:54:42 +0530 Subject: [PATCH] fix doctest (fixup #24466) --- src/doc/trpl/move-semantics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/move-semantics.md b/src/doc/trpl/move-semantics.md index 0e7a1130561e..b5bd53e1d75a 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) { // what happens here isn’t important. }