Skip to content

Commit cd773c3

Browse files
authored
Update outdated comment
1 parent a929e60 commit cd773c3

File tree

1 file changed

+1
-1
lines changed
  • library/alloc/src/collections/vec_deque

1 file changed

+1
-1
lines changed

library/alloc/src/collections/vec_deque/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ impl<T, A: Allocator> VecDeque<T, A> {
417417
}
418418
}
419419

420-
/// Append all values from `src` to `dst`, wrapping around if needed.
420+
/// Copies all values from `src` to `dst`, wrapping around if needed.
421421
/// Assumes capacity is sufficient.
422422
#[inline]
423423
unsafe fn copy_slice(&mut self, dst: usize, src: &[T]) {

0 commit comments

Comments
 (0)