diff options
| author | bors <bors@rust-lang.org> | 2015-04-26 23:25:37 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-26 23:25:37 +0000 |
| commit | 5fb0259edfbc4034cfbcf827ab91d6118b7ae848 (patch) | |
| tree | 1458b94285de9dc07a56514d4c289c11c859e377 | |
| parent | e4b80647c8d3f1d41b1e8467e2a04e09d0c67b03 (diff) | |
| parent | b2757edff8955a5a745fd1589f5a10318106b481 (diff) | |
| download | rust-5fb0259edfbc4034cfbcf827ab91d6118b7ae848.tar.gz rust-5fb0259edfbc4034cfbcf827ab91d6118b7ae848.zip | |
Auto merge of #24850 - frewsxcv:patch-18, r=steveklabnik
| -rw-r--r-- | src/libcore/iter.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 233ed018119..21510e1a83b 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -179,8 +179,8 @@ pub trait Iterator { /// Creates an iterator that iterates over both this and the specified /// iterators simultaneously, yielding the two elements as pairs. When - /// either iterator returns `None`, all further invocations of next() will - /// return `None`. + /// either iterator returns `None`, all further invocations of `next()` + /// will return `None`. /// /// # Examples /// |
