Skip to content

Commit a36c3f6

Browse files
committed
Revise the text of vec::split_off() per review in #65739
Remove the incorrect usage of "copy" as the trait is not called.
1 parent 8c7530a commit a36c3f6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/liballoc/vec.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1333,10 +1333,9 @@ impl<T> Vec<T> {
13331333

13341334
/// Splits the collection into two at the given index.
13351335
///
1336-
/// Copies the range from `[at, len)` to a newly allocated `Self`
1337-
/// and returns the result. The original `Self` will contain the
1338-
/// range from `[0, at)`. Note that the capacity of `self` does
1339-
/// not change.
1336+
/// Returns a newly allocated vector containing the elements in the range
1337+
/// `[at, len)`. After the call, the original vector will be left containing
1338+
/// the elements `[0, at)` with its previous capacity unchanged.
13401339
///
13411340
/// # Panics
13421341
///

0 commit comments

Comments
 (0)