]> git.lizzy.rs Git - rust.git/blobdiff - src/doc/style/style/naming/iterators.md
Changed issue number to 36105
[rust.git] / src / doc / style / style / naming / iterators.md
index 38138b5e39d3a0781efb0e333adc62646ee4672a..945cbe4800cb089a2b420536ce6b05a95d29a1ec 100644 (file)
@@ -6,7 +6,7 @@
 
 For a container with elements of type `U`, iterator methods should be named:
 
-```rust
+```rust,ignore
 fn iter(&self) -> T           // where T implements Iterator<&U>
 fn iter_mut(&mut self) -> T   // where T implements Iterator<&mut U>
 fn into_iter(self) -> T       // where T implements Iterator<U>