Auto merge of #24850 - frewsxcv:patch-18, r=steveklabnik

This commit is contained in:
bors 2015-04-26 23:25:37 +00:00
commit 5fb0259edf

View file

@ -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
///