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 3a16aa1 commit 3185ca2Copy full SHA for 3185ca2
core/src/slice/mod.rs
@@ -3203,9 +3203,9 @@ impl<T> [T] {
3203
///
3204
/// Returns a triple partitioning the reordered slice:
3205
3206
- /// * The unsorted subslice before `index` (elements all pass `f(x) <= f(self[index])`)
3207
- /// * The element at `index`
3208
- /// * 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])`.
3209
3210
/// # Current implementation
3211
0 commit comments