Skip to content

Commit 3bb54a3

Browse files
committed
Rollup merge of #25591 - rick68:patch-2, r=alexcrichton
fixed a mistake.
2 parents 9d5e621 + b460e45 commit 3bb54a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3114,7 +3114,7 @@ pub mod order {
31143114
}
31153115

31163116
/// Returns `a` < `b` lexicographically (Using partial order, `PartialOrd`)
3117-
pub fn lt<R: Iterator, L: Iterator>(mut a: L, mut b: R) -> bool where
3117+
pub fn lt<L: Iterator, R: Iterator>(mut a: L, mut b: R) -> bool where
31183118
L::Item: PartialOrd<R::Item>,
31193119
{
31203120
loop {

0 commit comments

Comments
 (0)