Skip to content

Commit 623bdc2

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

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
@@ -3080,9 +3080,9 @@ impl<T> [T] {
30803080
///
30813081
/// Returns a triple partitioning the reordered slice:
30823082
///
3083-
/// * The unsorted subslice before `index` (elements all pass `x <= self[index]`)
3084-
/// * The element at `index`
3085-
/// * The unsorted subslice after `index` (elements all pass `x >= self[index]`)
3083+
/// * The unsorted subslice before `index`, whose elements all satisfy `x <= self[index]`.
3084+
/// * The element at `index`.
3085+
/// * The unsorted subslice after `index`, whose elements all satisfy `x >= self[index]`.
30863086
///
30873087
/// # Current implementation
30883088
///

0 commit comments

Comments
 (0)