diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index 233ed01811930..21510e1a83b8f 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 ///