File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 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 the last (`usize::MAX`) byte of the address space.
70- //! As a consequence, any address which is either in the allocated object or one byte past
71- //! the last address in the allocated object can be computed without wrapping around the
72- //! address space.
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.
73+ //!
74+ //! [`null()`]: null
7375//!
7476//! # Strict Provenance
7577//!
You can’t perform that action at this time.
0 commit comments