Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix more links #470

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions reference/src/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ This range can be empty, but even empty allocations have a *base address* that t
The base address of an allocation is not necessarily unique; but if two distinct allocations have the same base address then at least one of them must be empty.

Pointer arithmetic is generally only possible within an allocation:
[provenance][pointer-provenance] ensures that each pointer "remembers" which allocation it points to,
[provenance][provenance] ensures that each pointer "remembers" which allocation it points to,
and accesses are only permitted if the address is in range of the allocation associated with the pointer.

Data inside an allocation is stored as [abstract bytes][abstract-byte];
Data inside an allocation is stored as [abstract bytes][abstract byte];
in particular, allocations do not track which type the data inside them has.

### Interior mutability
Expand Down