Skip to content

Commit f8df145

Browse files
mgsloanibraheemdev
authored and
gitbot
committed
Update library/core/src/slice/mod.rs
Co-authored-by: Ibraheem Ahmed <[email protected]>
1 parent 2c816ed commit f8df145

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/slice/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3205,9 +3205,9 @@ impl<T> [T] {
32053205
///
32063206
/// Returns a triple partitioning the reordered slice:
32073207
///
3208-
/// * The unsorted subslice before `index` (elements all pass `f(x) <= f(self[index])`)
3209-
/// * The element at `index`
3210-
/// * The unsorted subslice after `index` (elements all pass `f(x) >= f(self[index])`)
3208+
/// * The unsorted subslice before `index`, whose elements all satisfy `f(x) <= f(self[index])`.
3209+
/// * The element at `index`.
3210+
/// * The unsorted subslice after `index`, whose elements all satisfy `f(x) >= f(self[index])`.
32113211
///
32123212
/// # Current implementation
32133213
///

0 commit comments

Comments
 (0)