We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b33637 commit a0d178aCopy full SHA for a0d178a
core/src/slice/mod.rs
@@ -3080,9 +3080,9 @@ impl<T> [T] {
3080
///
3081
/// Returns a triple partitioning the reordered slice:
3082
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]`)
+ /// * 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]`.
3086
3087
/// # Current implementation
3088
0 commit comments