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
+1 -1
View File
@@ -3114,7 +3114,7 @@ pub fn ne<L: Iterator, R: Iterator>(mut a: L, mut b: R) -> bool where
}
/// 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 {