Skip to content

Commit cbe3738

Browse files
authored
Update based on rust-lang#116988 (the null address has the value 0)
1 parent ba5bfa7 commit cbe3738

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

library/core/src/ptr/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@
6666
//! a separate allocated object), and `static` variables.
6767
//!
6868
//! It is guaranteed that an allocated object never spans more than `isize::MAX` bytes.
69-
//! An allocated object cannot contain [`null()`] and cannot contain the last (`usize::MAX`) byte
70-
//! of the address space. As a consequence, any address which is either in the allocated object or
71-
//! one byte past the last address in the allocated object can be computed without wrapping around
72-
//! the address space.
69+
//! An allocated object cannot contain [`null()`] (i.e., the address with the numerical value 0) and
70+
//! cannot contain the last (`usize::MAX`) byte of the address space. As a consequence, any address
71+
//! which is either in the allocated object or one byte past the last address in the allocated object
72+
//! can be computed without wrapping around the address space.
7373
//!
7474
//! [`null()`]: null
7575
//!

0 commit comments

Comments
 (0)