diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-04-27 10:26:20 -0400 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-04-27 10:26:20 -0400 |
| commit | 03f3b45ff0875926e245b1e6975d0578fd640468 (patch) | |
| tree | 5aff419b0b731d508a902fde0013e283122d3c3b /src | |
| parent | 1b18da4a4635d53b0b3c7846318c3b67bf9e9822 (diff) | |
| parent | 36cf51dc3a53ab32fe587e7b0b62af0f2b3b8ad0 (diff) | |
| download | rust-03f3b45ff0875926e245b1e6975d0578fd640468.tar.gz rust-03f3b45ff0875926e245b1e6975d0578fd640468.zip | |
Rollup merge of #24868 - tshepang:fix-vec-remove-doc, r=steveklabnik
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcollections/vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index fcf90a84ef2..b033c2d90e1 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -536,7 +536,7 @@ impl<T> Vec<T> { /// /// # Panics /// - /// Panics if `i` is out of bounds. + /// Panics if `index` is out of bounds. /// /// # Examples /// |
