Skip to content

Commit

Permalink
[doc] Updated broken link (#281)
Browse files Browse the repository at this point in the history
  • Loading branch information
nerodesu017 authored Sep 27, 2024
1 parent cb60a74 commit 95d3d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/tutorial/Pointers.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Linux.syscall(SYS_read, (STDIN, Pointer.atContents(buf), buf.length));

## Prefer off-heap `Range`s instead of `Pointer`s

Recently, Virgil added the (Ranges)[Ranges.md].
Recently, Virgil added the [Ranges](Ranges.md).
Ranges are more general than arrays, as they can represent a subset of an array within a larger array.
But better than that, a `Range<T>` reference can be used to point to off-heap data, such as the execution stack, code, or memory-mapped regions.
Because Ranges are bounds checked, they are generally preferrable to raw `Pointer` values.
Expand Down

0 comments on commit 95d3d5b

Please sign in to comment.