about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsrinivasreddy <thatiparthysreenivas@gmail.com>2016-03-03 21:54:21 +0530
committersrinivasreddy <thatiparthysreenivas@gmail.com>2016-03-03 21:54:21 +0530
commitd2df5514c09aa0d9a648183b33b5b1ee1c6d0fa2 (patch)
treeb1070156c8691c3e840ef792776b92818ef6daa6
parent2dc723de9a1f842fad084791cbe6029b710cf93b (diff)
downloadrust-d2df5514c09aa0d9a648183b33b5b1ee1c6d0fa2.tar.gz
rust-d2df5514c09aa0d9a648183b33b5b1ee1c6d0fa2.zip
added ignore
-rw-r--r--src/doc/book/vectors.md2
1 files changed, 1 insertions, 1 deletions
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 {