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