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 <ibraheem@ibraheem.ca>
  • Loading branch information
2 people authored and gitbot committed Feb 20, 2025
1 parent 022b497 commit 5b97407
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 @@ -3205,9 +3205,9 @@ impl<T> [T] {
///
/// Returns a triple partitioning the reordered slice:
///
/// * The unsorted subslice before `index` (elements all pass `f(x) <= f(self[index])`)
/// * The element at `index`
/// * The unsorted subslice after `index` (elements all pass `f(x) >= f(self[index])`)
/// * The unsorted subslice before `index`, whose elements all satisfy `f(x) <= f(self[index])`.
/// * The element at `index`.
/// * The unsorted subslice after `index`, whose elements all satisfy `f(x) >= f(self[index])`.
///
/// # Current implementation
///
Expand Down

0 comments on commit 5b97407

Please sign in to comment.