doc: fix and expand explanation

I see that `extend()` is not called if new_len > len()
This commit is contained in:
Tshepang Lekhonkhobe 2015-10-29 21:39:05 +02:00
parent 01fd4d6227
commit d7a5aba2d3

View file

@ -859,8 +859,9 @@ impl<T> Vec<T> {
impl<T: Clone> Vec<T> {
/// Resizes the `Vec` in-place so that `len()` is equal to `new_len`.
///
/// Calls either `extend()` or `truncate()` depending on whether `new_len`
/// is larger than the current value of `len()` or not.
/// If `new_len` is greater than `len()`, the `Vec` is extended by the
/// difference, with each additional slot filled with `value`.
/// If `new_len` is less than `len()`, the `Vec` is simply truncated.
///
/// # Examples
///