Skip to content

Commit

Permalink
Rollup merge of rust-lang#23927 - frewsxcv:patch-7, r=Manishearth
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Apr 1, 2015
2 parents 2159bbf + 4b6248a commit 77112bb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/libcore/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
//! }
//! }
//! ```
Expand Down

0 comments on commit 77112bb

Please sign in to comment.