Rollup merge of #40423 - DirkyJerky:patch-2, r=BurntSushi
Clarify docs in `VecDeque::resize`
This commit is contained in:
commit
b32393c889
1 changed files with 1 additions and 1 deletions
|
@ -1808,7 +1808,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
|
||||
///
|
||||
|
|
Loading…
Add table
Reference in a new issue