1
Fork 0

fix: typo in vec.rs

This commit is contained in:
Pedro de Brito 2020-01-28 07:59:07 +01:00
parent 67fae2241b
commit 074cfcbf2d

View file

@ -176,7 +176,7 @@ use crate::raw_vec::RawVec;
/// ``` /// ```
/// ///
/// In Rust, it's more common to pass slices as arguments rather than vectors /// In Rust, it's more common to pass slices as arguments rather than vectors
/// when you just want to provide a read access. The same goes for [`String`] and /// when you just want to provide read access. The same goes for [`String`] and
/// [`&str`]. /// [`&str`].
/// ///
/// # Capacity and reallocation /// # Capacity and reallocation