Rollup merge of #25591 - rick68:patch-2, r=alexcrichton

fixed a mistake.
This commit is contained in:
Manish Goregaokar 2015-05-19 18:47:16 +05:30
commit 3bb54a3362

View file

@ -3114,7 +3114,7 @@ pub mod order {
}
/// Returns `a` < `b` lexicographically (Using partial order, `PartialOrd`)
pub fn lt<R: Iterator, L: Iterator>(mut a: L, mut b: R) -> bool where
pub fn lt<L: Iterator, R: Iterator>(mut a: L, mut b: R) -> bool where
L::Item: PartialOrd<R::Item>,
{
loop {