Skip to content

Commit d5e2b60

Browse files
committed
Fix dox
1 parent 63f9713 commit d5e2b60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

std/algorithm/sorting.d

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
576576
predicate `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,
579579
r[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
582582
If `r` contains equivalent elements, multiple permutations of `r` satisfy these
583583
constraints. In such cases, `pivotPartition` attempts to distribute equivalent
@@ -586,7 +586,7 @@ r.length / 2).
586586
587587
Params:
588588
less = 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
590590
equivalence)
591591
r = The range being partitioned
592592
pivot = The index of the pivot for partitioning, must be less than `r.length` or

0 commit comments

Comments
 (0)