Doc/wording edit for zero_filled

This commit is contained in:
bluss
2021-08-14 13:37:00 +02:00
committed by GitHub
parent e98cb1c81a
commit 1e74077b72
+1 -1
View File
@@ -129,7 +129,7 @@ impl<const CAP: usize> ArrayString<CAP>
Ok(vec)
}
/// Creates a new `ArrayString` instance fully filled with ASCII NULL characters (`\0`). Useful
/// Create a new `ArrayString` value fully filled with ASCII NULL characters (`\0`). Useful
/// to be used as a buffer to collect external data or as a buffer for intermediate processing.
///
/// ```