Skip to content

Commit

Permalink
Clarify docs in VecDeque::resize
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkyJerky authored Mar 10, 2017
1 parent f573db4 commit 384ee48
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 @@ -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
///
Expand Down

0 comments on commit 384ee48

Please sign in to comment.