From d2df5514c09aa0d9a648183b33b5b1ee1c6d0fa2 Mon Sep 17 00:00:00 2001 From: srinivasreddy Date: Thu, 3 Mar 2016 21:54:21 +0530 Subject: [PATCH] added ignore --- src/doc/book/vectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.44.0