@@ -213,7 +213,7 @@ extension Sequence {
213
213
/// sequence are equivalent to the elements in another sequence, using
214
214
/// the given predicate as the equivalence test.
215
215
///
216
- /// The predicate must be a *equivalence relation* over the elements. That
216
+ /// The predicate must be an *equivalence relation* over the elements. That
217
217
/// is, for any elements `a`, `b`, and `c`, the following conditions must
218
218
/// hold:
219
219
///
@@ -297,7 +297,7 @@ extension Sequence {
297
297
///
298
298
/// At least one of the sequences must be finite.
299
299
///
300
- /// The predicate must be a *equivalence relation* over the elements. That
300
+ /// The predicate must be an *equivalence relation* over the elements. That
301
301
/// is, for any elements `a`, `b`, and `c`, the following conditions must
302
302
/// hold:
303
303
///
@@ -407,7 +407,7 @@ extension Sequence {
407
407
public func lexicographicallyPrecedes< OtherSequence: Sequence > (
408
408
_ other: OtherSequence ,
409
409
by areInIncreasingOrder: ( Element , Element ) throws -> Bool
410
- ) rethrows -> Bool
410
+ ) rethrows -> Bool
411
411
where OtherSequence. Element == Element {
412
412
var iter1 = self . makeIterator ( )
413
413
var iter2 = other. makeIterator ( )
@@ -632,7 +632,7 @@ extension Sequence {
632
632
}
633
633
return accumulator
634
634
}
635
-
635
+
636
636
/// Returns the result of combining the elements of the sequence using the
637
637
/// given closure.
638
638
///
0 commit comments