mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
Fix Vec::extend_from_slice docs
This commit is contained in:
parent
14c1e71d09
commit
8bfc76dd62
@ -2199,7 +2199,7 @@ impl<T: Clone, A: Allocator> Vec<T, A> {
|
||||
/// Clones and appends all elements in a slice to the `Vec`.
|
||||
///
|
||||
/// Iterates over the slice `other`, clones each element, and then appends
|
||||
/// it to this `Vec`. The `other` vector is traversed in-order.
|
||||
/// it to this `Vec`. The `other` slice is traversed in-order.
|
||||
///
|
||||
/// Note that this function is same as [`extend`] except that it is
|
||||
/// specialized to work with slices instead. If and when Rust gets
|
||||
|
Loading…
Reference in New Issue
Block a user