Skip to content

Commit

Permalink
Rollup merge of rust-lang#76023 - pickfire:patch-4, r=jyn514
Browse files Browse the repository at this point in the history
Liballoc extend use intra doc link

Superseeds https://github.com/rust-lang/rust/pull/75729/commits

r? @jyn514
  • Loading branch information
matklad authored Aug 31, 2020
2 parents c8bc4f2 + c7e428e commit df594e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/alloc/src/vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1609,7 +1609,7 @@ impl<T: Clone> Vec<T> {
/// assert_eq!(vec, [1, 2, 3, 4]);
/// ```
///
/// [`extend`]: #method.extend
/// [`extend`]: Vec::extend
#[stable(feature = "vec_extend_from_slice", since = "1.6.0")]
pub fn extend_from_slice(&mut self, other: &[T]) {
self.spec_extend(other.iter())
Expand Down

0 comments on commit df594e2

Please sign in to comment.