From: srinivasreddy Date: Thu, 3 Mar 2016 16:24:21 +0000 (+0530) Subject: added ignore X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=d2df5514c09aa0d9a648183b33b5b1ee1c6d0fa2;p=rust.git added ignore --- diff --git a/src/doc/book/vectors.md b/src/doc/book/vectors.md index 1c120186aab..ceb6b3c003e 100644 --- a/src/doc/book/vectors.md +++ b/src/doc/book/vectors.md @@ -119,7 +119,7 @@ Note: You cannot use the vector again once you have iterated by taking ownership You can iterate the vector multiple times by taking a reference to the vector whilst iterating. For example, the following code does not compile. -```rust +```rust,ignore let mut v = vec![1, 2, 3, 4, 5]; for i in v {