Skip to content

Commit e59eb4e

Browse files
authored
Rollup merge of #76023 - pickfire:patch-4, r=jyn514
Liballoc extend use intra doc link Superseeds https://github.com/rust-lang/rust/pull/75729/commits r? @jyn514
2 parents c601714 + c7e428e commit e59eb4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/vec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1609,7 +1609,7 @@ impl<T: Clone> Vec<T> {
16091609
/// assert_eq!(vec, [1, 2, 3, 4]);
16101610
/// ```
16111611
///
1612-
/// [`extend`]: #method.extend
1612+
/// [`extend`]: Vec::extend
16131613
#[stable(feature = "vec_extend_from_slice", since = "1.6.0")]
16141614
pub fn extend_from_slice(&mut self, other: &[T]) {
16151615
self.spec_extend(other.iter())

0 commit comments

Comments
 (0)