diff --git a/library/alloc/src/ffi/c_str.rs b/library/alloc/src/ffi/c_str.rs
index 59f5857b97aa..d6dcba7107a9 100644
--- a/library/alloc/src/ffi/c_str.rs
+++ b/library/alloc/src/ffi/c_str.rs
@@ -636,7 +636,7 @@ impl CString {
Self { inner: v.into_boxed_slice() }
}
- /// Attempts to converts a [Vec]<[u8]> to a [`CString`].
+ /// Attempts to convert a [Vec]<[u8]> to a [`CString`].
///
/// Runtime checks are present to ensure there is only one nul byte in the
/// [`Vec`], its last element.