diff options
| author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2020-08-31 12:51:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-31 12:51:42 +0200 |
| commit | e59eb4e0fad4fc1ab3ac3c2db3f3e64177fbca07 (patch) | |
| tree | f1002ddf3c1852a8b82af8139faf5c5b12a09f0c | |
| parent | c6017142a3f0f75b8f0d3829a06829be5fb3828c (diff) | |
| parent | c7e428e862384492460872300519bad19ad7c13d (diff) | |
| download | rust-e59eb4e0fad4fc1ab3ac3c2db3f3e64177fbca07.tar.gz rust-e59eb4e0fad4fc1ab3ac3c2db3f3e64177fbca07.zip | |
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
| -rw-r--r-- | library/alloc/src/vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/vec.rs b/library/alloc/src/vec.rs index 61e1245f073..f9df3844441 100644 --- a/library/alloc/src/vec.rs +++ b/library/alloc/src/vec.rs @@ -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()) |
