about summary refs log tree commit diff
diff options
context:
space:
mode:
authorIvan Tham <pickfire@riseup.net>2020-07-09 23:41:56 +0800
committerIvan Tham <pickfire@riseup.net>2020-08-14 10:50:30 +0800
commitdba647ef32e8f076bdc1338249932ed08b61a127 (patch)
treedb11717fa3e66d10bef556ba809a1c220457b396
parent4b9ac5161781ca6a376daab3d3b2f2623d8f3789 (diff)
downloadrust-dba647ef32e8f076bdc1338249932ed08b61a127.tar.gz
rust-dba647ef32e8f076bdc1338249932ed08b61a127.zip
Remove liballoc unneeded explicit link
-rw-r--r--library/alloc/src/vec.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/library/alloc/src/vec.rs b/library/alloc/src/vec.rs
index 786d1b6ba82..b5c2f1d7256 100644
--- a/library/alloc/src/vec.rs
+++ b/library/alloc/src/vec.rs
@@ -2621,7 +2621,6 @@ where
 /// This `struct` is created by the `into_iter` method on [`Vec`] (provided
 /// by the [`IntoIterator`] trait).
 ///
-/// [`Vec`]: struct.Vec.html
 /// [`IntoIterator`]: ../../std/iter/trait.IntoIterator.html
 #[stable(feature = "rust1", since = "1.0.0")]
 pub struct IntoIter<T> {
@@ -2805,7 +2804,6 @@ unsafe impl<#[may_dangle] T> Drop for IntoIter<T> {
 /// This `struct` is created by the [`drain`] method on [`Vec`].
 ///
 /// [`drain`]: struct.Vec.html#method.drain
-/// [`Vec`]: struct.Vec.html
 #[stable(feature = "drain", since = "1.6.0")]
 pub struct Drain<'a, T: 'a> {
     /// Index of tail to preserve
@@ -2937,7 +2935,6 @@ impl<T> FusedIterator for Drain<'_, T> {}
 /// documentation for more.
 ///
 /// [`splice()`]: struct.Vec.html#method.splice
-/// [`Vec`]: struct.Vec.html
 #[derive(Debug)]
 #[stable(feature = "vec_splice", since = "1.21.0")]
 pub struct Splice<'a, I: Iterator + 'a> {