Skip to content

Commit bc8c991

Browse files
committed
fix warning
1 parent cf725db commit bc8c991

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/structures/paging/page_table.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl PageTableEntry {
6464
///
6565
/// - `FrameError::FrameNotPresent` if the entry doesn't have the `PRESENT` flag set.
6666
/// - `FrameError::HugeFrame` if the entry has the `HUGE_PAGE` flag set (for huge pages the
67-
/// `addr` function must be used)
67+
/// `addr` function must be used)
6868
#[inline]
6969
pub fn frame(&self) -> Result<PhysFrame, FrameError> {
7070
if !self.flags().contains(PageTableFlags::PRESENT) {

0 commit comments

Comments
 (0)