Skip to content

Commit dba647e

Browse files
committed
Remove liballoc unneeded explicit link
1 parent 4b9ac51 commit dba647e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

library/alloc/src/vec.rs

-3
Original file line numberDiff line numberDiff line change
@@ -2621,7 +2621,6 @@ where
26212621
/// This `struct` is created by the `into_iter` method on [`Vec`] (provided
26222622
/// by the [`IntoIterator`] trait).
26232623
///
2624-
/// [`Vec`]: struct.Vec.html
26252624
/// [`IntoIterator`]: ../../std/iter/trait.IntoIterator.html
26262625
#[stable(feature = "rust1", since = "1.0.0")]
26272626
pub struct IntoIter<T> {
@@ -2805,7 +2804,6 @@ unsafe impl<#[may_dangle] T> Drop for IntoIter<T> {
28052804
/// This `struct` is created by the [`drain`] method on [`Vec`].
28062805
///
28072806
/// [`drain`]: struct.Vec.html#method.drain
2808-
/// [`Vec`]: struct.Vec.html
28092807
#[stable(feature = "drain", since = "1.6.0")]
28102808
pub struct Drain<'a, T: 'a> {
28112809
/// Index of tail to preserve
@@ -2937,7 +2935,6 @@ impl<T> FusedIterator for Drain<'_, T> {}
29372935
/// documentation for more.
29382936
///
29392937
/// [`splice()`]: struct.Vec.html#method.splice
2940-
/// [`Vec`]: struct.Vec.html
29412938
#[derive(Debug)]
29422939
#[stable(feature = "vec_splice", since = "1.21.0")]
29432940
pub struct Splice<'a, I: Iterator + 'a> {

0 commit comments

Comments
 (0)