Update library/core/src/slice/mod.rs
Co-authored-by: Ibraheem Ahmed <ibraheem@ibraheem.ca>
This commit is contained in:
parent
d39d0ecd57
commit
305bd856b2
1 changed files with 3 additions and 3 deletions
|
|
@ -3078,9 +3078,9 @@ impl<T> [T] {
|
|||
///
|
||||
/// Returns a triple partitioning the reordered slice:
|
||||
///
|
||||
/// * The unsorted subslice before `index` (elements all pass `x <= self[index]`)
|
||||
/// * The element at `index`
|
||||
/// * The unsorted subslice after `index` (elements all pass `x >= self[index]`)
|
||||
/// * The unsorted subslice before `index`, whose elements all satisfy `x <= self[index]`.
|
||||
/// * The element at `index`.
|
||||
/// * The unsorted subslice after `index`, whose elements all satisfy `x >= self[index]`.
|
||||
///
|
||||
/// # Current implementation
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue