Rollup merge of #23927 - frewsxcv:patch-7, r=Manishearth

This commit is contained in:
Manish Goregaokar 2015-04-02 00:40:40 +05:30
commit 77112bbe4f

View File

@ -45,10 +45,8 @@
//! let mut it = values.into_iter();
//! loop {
//! match it.next() {
//! Some(x) => {
//! println!("{}", x);
//! }
//! None => { break }
//! Some(x) => println!("{}", x),
//! None => break,
//! }
//! }
//! ```