diff --git a/src/iter/mod.rs b/src/iter/mod.rs index 12ff74293..57ea6f759 100644 --- a/src/iter/mod.rs +++ b/src/iter/mod.rs @@ -2886,7 +2886,7 @@ pub trait IndexedParallelIterator: ParallelIterator { } /// Determines if the elements of this `ParallelIterator` - /// are less or equal to those of another. + /// are less than or equal to those of another. fn le(self, other: I) -> bool where I: IntoParallelIterator, @@ -2907,7 +2907,7 @@ pub trait IndexedParallelIterator: ParallelIterator { } /// Determines if the elements of this `ParallelIterator` - /// are less or equal to those of another. + /// are greater than or equal to those of another. fn ge(self, other: I) -> bool where I: IntoParallelIterator,