diff --git a/src/arrayvec.rs b/src/arrayvec.rs index 2ab9b0d..d46eddf 100644 --- a/src/arrayvec.rs +++ b/src/arrayvec.rs @@ -127,7 +127,7 @@ impl ArrayVec { #[inline(always)] pub fn capacity(&self) -> usize { CAP } - /// Return ture if the `ArrayVec` is completely filled to its capacity, false otherwise. + /// Return true if the `ArrayVec` is completely filled to its capacity, false otherwise. /// /// ``` /// use arrayvec::ArrayVec;