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
1 changed files with 1 additions and 1 deletions

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
/// 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`].
///
/// # Capacity and reallocation