Skip to content

Commit 109cc0c

Browse files
authored
Merge pull request #178 from cuviper/patch-1
DOC: Fix typo in ArrayVec::is_full
2 parents f74f3d2 + dc0360f commit 109cc0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arrayvec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl<T, const CAP: usize> ArrayVec<T, CAP> {
127127
#[inline(always)]
128128
pub fn capacity(&self) -> usize { CAP }
129129

130-
/// Return ture if the `ArrayVec` is completely filled to its capacity, false otherwise.
130+
/// Return true if the `ArrayVec` is completely filled to its capacity, false otherwise.
131131
///
132132
/// ```
133133
/// use arrayvec::ArrayVec;

0 commit comments

Comments
 (0)