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 d39d0ec commit 305bd85Copy full SHA for 305bd85
library/core/src/slice/mod.rs
@@ -3078,9 +3078,9 @@ impl<T> [T] {
3078
///
3079
/// Returns a triple partitioning the reordered slice:
3080
3081
- /// * The unsorted subslice before `index` (elements all pass `x <= self[index]`)
3082
- /// * The element at `index`
3083
- /// * 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]`.
3084
3085
/// # Current implementation
3086
0 commit comments