From dc0360ffd24f93c2d7fe4ab16246afaddf1fe037 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Wed, 24 Mar 2021 16:57:10 -0700 Subject: [PATCH] DOC: Fix typo in ArrayVec::is_full --- src/arrayvec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;