Rollup merge of #24279 - libfud:vec_insertion_docs, r=steveklabnik

...to be less confusing. Since 0 is the smallest number possible for usize, it doesn't make sense to mention it if it's already included, and it should be more clear that the length of the vector is a valid index with the new wording.

r? @steveklabnik
This commit is contained in:
Manish Goregaokar 2015-04-11 19:05:00 +05:30
commit 87660562a6

View File

@ -525,8 +525,7 @@ impl<T> Vec<T> {
///
/// # Panics
///
/// Panics if `index` is not between `0` and the vector's length (both
/// bounds inclusive).
/// Panics if `index` is greater than the vector's length.
///
/// # Examples
///