Skip to content

Commit

Permalink
Rollup merge of #40423 - DirkyJerky:patch-2, r=BurntSushi
Browse files Browse the repository at this point in the history
Clarify docs in `VecDeque::resize`
  • Loading branch information
Ariel Ben-Yehuda authored Mar 10, 2017
2 parents 5381bce + 384ee48 commit f7d8e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/vec_deque.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
///
Expand Down

0 comments on commit f7d8e09

Please sign in to comment.