DOC: Fix typo in ArrayVec::is_full

This commit is contained in:
Josh Stone
2021-03-24 16:57:10 -07:00
committed by GitHub
parent f74f3d2b02
commit dc0360ffd2
+1 -1
View File
@@ -127,7 +127,7 @@ impl<T, const CAP: usize> ArrayVec<T, CAP> {
#[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;