diff options
| -rw-r--r-- | library/core/src/slice/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/slice/mod.rs b/library/core/src/slice/mod.rs index 9b82a17cd5c..2f2bc5c559e 100644 --- a/library/core/src/slice/mod.rs +++ b/library/core/src/slice/mod.rs @@ -3076,7 +3076,7 @@ impl<T> [T] { /// up at that position), in-place (i.e. does not allocate), and runs in *O*(*n*) time. This /// function is also known as "kth element" in other libraries. /// - /// Returns a triple partitioning the reordered slice: + /// Returns a triple that partitions the reordered slice: /// /// * The unsorted subslice before `index`, whose elements all satisfy `x <= self[index]`. /// * The element at `index`. |
