Remove unecessary link

This commit is contained in:
Alexis Bourget 2020-07-23 22:35:22 +02:00
parent e601e2ac48
commit 771ec216bc

View File

@ -1298,8 +1298,6 @@ impl<T> Vec<T> {
/// v.drain(..);
/// assert_eq!(v, &[]);
/// ```
///
/// [`mem::forget`]: mem::forget
#[stable(feature = "drain", since = "1.6.0")]
pub fn drain<R>(&mut self, range: R) -> Drain<'_, T>
where