We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0aa7b5 commit 6ac44faCopy full SHA for 6ac44fa
library/core/src/slice/mod.rs
@@ -3138,9 +3138,9 @@ impl<T> [T] {
3138
///
3139
/// Returns a triple partitioning the reordered slice:
3140
3141
- /// * The unsorted subslice before `index` (elements all pass `compare(x, self[index]).is_le()`)
3142
- /// * The element at `index`
3143
- /// * The unsorted subslice after `index` (elements all pass `compare(x, self[index]).is_ge()`)
+ /// * The unsorted subslice before `index`, whose elements all satisfy `compare(x, self[index]).is_le()`.
+ /// * The element at `index`.
+ /// * The unsorted subslice after `index`, whose elements all satisfy `compare(x, self[index]).is_ge()`.
3144
3145
/// # Current implementation
3146
0 commit comments