File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -575,9 +575,9 @@ $(LI All elements `e` in subrange $(D r[0 .. k]) satisfy $(D !less(r[k], e))
575575(i.e. `r[k]` is greater than or equal to each element to its left according to
576576predicate `less`))
577577
578- $(LI $(LI All elements `e` in subrange $(D r[0 .. k]) satisfy $(D !less(e,
578+ $(LI All elements `e` in subrange $(D r[0 .. k]) satisfy $(D !less(e,
579579r[k])) (i.e. `r[k]` is less than or equal to each element to its right
580- according to predicate `less`))))
580+ according to predicate `less`)))
581581
582582If `r` contains equivalent elements, multiple permutations of `r` satisfy these
583583constraints. In such cases, `pivotPartition` attempts to distribute equivalent
@@ -586,7 +586,7 @@ r.length / 2).
586586
587587Params:
588588less = The predicate used for comparison, modeled as a $(LUCKY strict weak
589- ordering) (irreflexive, antisymmetric, transitive, and implies transitive
589+ ordering) (irreflexive, antisymmetric, transitive, and implying a transitive
590590equivalence)
591591r = The range being partitioned
592592pivot = The index of the pivot for partitioning, must be less than `r.length` or
You can’t perform that action at this time.
0 commit comments