mirror of
https://github.com/dlang/phobos.git
synced 2025-04-30 07:00:37 +03:00
Fix doc comment for pivotPartition
Looks like a search-and-replace messed up the code markup. Also, it seems like the range specified in the second list item was not consistent with its explanation.
This commit is contained in:
parent
5814a924e0
commit
da9b10f859
1 changed files with 2 additions and 2 deletions
|
@ -583,8 +583,8 @@ $(LI All elements `e` in subrange `r[0 .. k]` satisfy `!less(r[k], e)`
|
|||
(i.e. `r[k]` is greater than or equal to each element to its left according to
|
||||
predicate `less`))
|
||||
|
||||
$(LI All elements `e` in subrange `r[0 .. k]` satisfy `!less(e$D(
|
||||
r[k])) (i.e. `r[k]` is less than or equal to each element to its right
|
||||
$(LI All elements `e` in subrange `r[k .. $]` satisfy `!less(e, r[k]))`
|
||||
(i.e. `r[k]` is less than or equal to each element to its right
|
||||
according to predicate `less`)))
|
||||
|
||||
If `r` contains equivalent elements, multiple permutations of `r` satisfy these
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue