diff options
| -rw-r--r-- | src/libcollections/slice.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libcollections/slice.rs b/src/libcollections/slice.rs index 3efda1faa3b..5696f5fe6a7 100644 --- a/src/libcollections/slice.rs +++ b/src/libcollections/slice.rs @@ -1410,6 +1410,9 @@ impl<T> [T] { /// Converts `self` into a vector without clones or allocation. /// + /// The resulting vector can be converted back into a box via + /// `Vec<T>`'s `into_boxed_slice` method. + /// /// # Examples /// /// ``` |
