diff options
| -rw-r--r-- | library/alloc/src/vec.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/alloc/src/vec.rs b/library/alloc/src/vec.rs index cb4c1c20abc..2580c970713 100644 --- a/library/alloc/src/vec.rs +++ b/library/alloc/src/vec.rs @@ -3037,6 +3037,7 @@ impl<T> AsIntoIter for IntoIter<T> { /// A draining iterator for `Vec<T>`. /// /// This `struct` is created by [`Vec::drain`]. +/// See its documentation for more. #[stable(feature = "drain", since = "1.6.0")] pub struct Drain<'a, T: 'a> { /// Index of tail to preserve |
