Skip to content

Commit

Permalink
fixup wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Gankra authored and steveklabnik committed Oct 1, 2015
1 parent 9ef2651 commit c7527a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/vec.rs
Expand Up @@ -199,7 +199,7 @@ use super::range::RangeArgument;
/// sufficient. `push` and `insert` *will* (re)allocate if `len() == capacity()`.
/// That is, the reported capacity is completely accurate, and can be relied on.
/// It can even be used to manually free the memory allocated by a Vec if
/// desired. Bulk insertion methods *may* reallocate unnecessarily.
/// desired. Bulk insertion methods *may* reallocate, even when not necessary.
///
/// Vec does not guarantee any particular growth strategy when reallocating
/// when full, nor when `reserve` is called. The current strategy is basic
Expand Down

0 comments on commit c7527a1

Please sign in to comment.