Indicate function call is code-like in doc-comment

This commit is contained in:
Corey Farwell 2015-04-26 17:41:16 -04:00
parent bba18fec45
commit b2757edff8

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