Skip to content

Commit f2f9b1d

Browse files
authored
Update c_str.rs
1 parent d031795 commit f2f9b1d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/alloc/src/ffi/c_str.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ impl CString {
421421
/// Failure to call [`CString::from_raw`] will lead to a memory leak.
422422
///
423423
/// The C side must **not** modify the length of the string (by writing a
424-
/// `null` somewhere inside the string or removing the final one) before
424+
/// nul byte somewhere inside the string or removing the final one) before
425425
/// it makes it back into Rust using [`CString::from_raw`]. See the safety section
426426
/// in [`CString::from_raw`].
427427
///
@@ -797,7 +797,7 @@ impl From<Box<CStr>> for CString {
797797
#[stable(feature = "cstring_from_vec_of_nonzerou8", since = "1.43.0")]
798798
impl From<Vec<NonZeroU8>> for CString {
799799
/// Converts a <code>[Vec]<[NonZeroU8]></code> into a [`CString`] without
800-
/// copying nor checking for inner null bytes.
800+
/// copying nor checking for inner nul bytes.
801801
#[inline]
802802
fn from(v: Vec<NonZeroU8>) -> CString {
803803
unsafe {
@@ -809,7 +809,7 @@ impl From<Vec<NonZeroU8>> for CString {
809809
let (ptr, len, cap): (*mut NonZeroU8, _, _) = Vec::into_raw_parts(v);
810810
Vec::from_raw_parts(ptr.cast::<u8>(), len, cap)
811811
};
812-
// SAFETY: `v` cannot contain null bytes, given the type-level
812+
// SAFETY: `v` cannot contain nul bytes, given the type-level
813813
// invariant of `NonZeroU8`.
814814
Self::_from_vec_unchecked(v)
815815
}

0 commit comments

Comments
 (0)