File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-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 can never contain the null address, and the address "at the end"
70- //! (i.e., one past the last byte that is contained inside the allocated object) can always
71- //! be computed without wrapping around the address space. (The last part is equivalent
72- //! to saying that the address `usize::MAX` is never contained in an allocated object.)
69+ //! The address "at the end" of an allocated object (i.e., one past the last byte that
70+ //! is contained inside the allocated object) can always be computed without wrapping
71+ //! around the address space. Equivalently, the address `usize::MAX` is never contained
72+ //! in an allocated object.
7373//!
7474//! # Strict Provenance
7575//!
You can’t perform that action at this time.
0 commit comments