Skip to content

Commit 5e85fec

Browse files
Rollup merge of #118956 - danielhuang:patch-2, r=workingjubilee
Make CStr documentation consistent ("nul" instead of "null") "nul" is used in method names and appears more often in the documentation than "null", so make all instances "nul" to keep it consistent.
2 parents 58353fa + f2f9b1d commit 5e85fec

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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
}

library/core/src/ffi/c_str.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ impl CStr {
205205
/// * The memory pointed to by `ptr` must contain a valid nul terminator at the
206206
/// end of the string.
207207
///
208-
/// * `ptr` must be [valid] for reads of bytes up to and including the null terminator.
208+
/// * `ptr` must be [valid] for reads of bytes up to and including the nul terminator.
209209
/// This means in particular:
210210
///
211211
/// * The entire memory range of this `CStr` must be contained within a single allocated object!
@@ -415,7 +415,7 @@ impl CStr {
415415
let mut i = bytes.len().saturating_sub(1);
416416
assert!(!bytes.is_empty() && bytes[i] == 0, "input was not nul-terminated");
417417

418-
// Ending null byte exists, skip to the rest.
418+
// Ending nul byte exists, skip to the rest.
419419
while i != 0 {
420420
i -= 1;
421421
let byte = bytes[i];

0 commit comments

Comments
 (0)