Rollup merge of #25591 - rick68:patch-2, r=alexcrichton
fixed a mistake.
This commit is contained in:
commit
3bb54a3362
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue