@@ -421,7 +421,7 @@ impl CString {
421
421
/// Failure to call [`CString::from_raw`] will lead to a memory leak.
422
422
///
423
423
/// 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
425
425
/// it makes it back into Rust using [`CString::from_raw`]. See the safety section
426
426
/// in [`CString::from_raw`].
427
427
///
@@ -797,7 +797,7 @@ impl From<Box<CStr>> for CString {
797
797
#[ stable( feature = "cstring_from_vec_of_nonzerou8" , since = "1.43.0" ) ]
798
798
impl From < Vec < NonZeroU8 > > for CString {
799
799
/// 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.
801
801
#[ inline]
802
802
fn from ( v : Vec < NonZeroU8 > ) -> CString {
803
803
unsafe {
@@ -809,7 +809,7 @@ impl From<Vec<NonZeroU8>> for CString {
809
809
let ( ptr, len, cap) : ( * mut NonZeroU8 , _ , _ ) = Vec :: into_raw_parts ( v) ;
810
810
Vec :: from_raw_parts ( ptr. cast :: < u8 > ( ) , len, cap)
811
811
} ;
812
- // SAFETY: `v` cannot contain null bytes, given the type-level
812
+ // SAFETY: `v` cannot contain nul bytes, given the type-level
813
813
// invariant of `NonZeroU8`.
814
814
Self :: _from_vec_unchecked ( v)
815
815
}
0 commit comments