Clarify docs in `VecDeque::resize`

This commit is contained in:
Geoff Yoerger 2017-03-10 12:11:13 -06:00 committed by GitHub
parent f573db4f80
commit 384ee48a1a
1 changed files with 1 additions and 1 deletions

View File

@ -1766,7 +1766,7 @@ impl<T> VecDeque<T> {
impl<T: Clone> VecDeque<T> {
/// Modifies the `VecDeque` in-place so that `len()` is equal to new_len,
/// either by removing excess elements or by appending copies of a value to the back.
/// either by removing excess elements or by appending clones of `value` to the back.
///
/// # Examples
///