Skip to content

Commit 3e2cb3d

Browse files
committed
remove doc line
1 parent 7b16d2c commit 3e2cb3d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

library/alloc/src/vec/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
5454
#![stable(feature = "rust1", since = "1.0.0")]
5555

56-
use core::cmp::{self, Ordering};
56+
use core::cmp::{self, Ordering};2
5757
use core::convert::TryFrom;
5858
use core::fmt;
5959
use core::hash::{Hash, Hasher};
@@ -2529,7 +2529,6 @@ impl<T, A: Allocator> Vec<T, A> {
25292529
/// append the entire slice at once.
25302530
///
25312531
/// [`copy_from_slice`]: ../../std/primitive.slice.html#method.copy_from_slice
2532-
/// [`copy_from_slice`]: slice::copy_from_slice
25332532
#[stable(feature = "extend_ref", since = "1.2.0")]
25342533
impl<'a, T: Copy + 'a, A: Allocator + 'a> Extend<&'a T> for Vec<T, A> {
25352534
#[track_caller]

0 commit comments

Comments
 (0)