We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf725db commit bc8c991Copy full SHA for bc8c991
src/structures/paging/page_table.rs
@@ -64,7 +64,7 @@ impl PageTableEntry {
64
///
65
/// - `FrameError::FrameNotPresent` if the entry doesn't have the `PRESENT` flag set.
66
/// - `FrameError::HugeFrame` if the entry has the `HUGE_PAGE` flag set (for huge pages the
67
- /// `addr` function must be used)
+ /// `addr` function must be used)
68
#[inline]
69
pub fn frame(&self) -> Result<PhysFrame, FrameError> {
70
if !self.flags().contains(PageTableFlags::PRESENT) {
0 commit comments