You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: book/src/subsystems/memory.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,8 +45,8 @@ Intrinsically, `Page`s have no relation to `PhysicalAddress`es, and similarly, `
45
45
46
46
47
47
For convenience, Theseus provides dedicated "range" types to represent a contiguous range of virtual `Page`s or physical `Frame`s.
48
-
They are inclusive ranges on both sides; see Rust's built-in [`RangeInclusive`] type for more information.
49
-
These types implement the standard Rust [`Iterator`] trait, allowing for easy iteration over all pages or frames in a range.
48
+
They are inclusive ranges on both sides; see our custom [`RangeInclusive`] type that replaces Rust's built-in `core::ops::RangeInclusive` type for more information.
49
+
These types implement the standard Rust [`IntoIterator`] trait, allowing for easy iteration over all pages or frames in a range.
50
50
51
51
Theseus employs macros to generate the implementation of the above basic types,
52
52
as they are symmetric across the virtual memory and physical memory categories.
@@ -103,7 +103,7 @@ That is a powerful guarantee that allows us to build stronger isolation and safe
0 commit comments