Skip to content

Commit

Permalink
Update library/core/src/slice/mod.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Ibraheem Ahmed <[email protected]>
  • Loading branch information
2 people authored and gitbot committed Mar 3, 2025
1 parent 4b33637 commit a0d178a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/slice/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3080,9 +3080,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
///
Expand Down

0 comments on commit a0d178a

Please sign in to comment.