We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bfc0d5 commit 16f555aCopy full SHA for 16f555a
src/lib.rs
@@ -44,9 +44,9 @@ bitflags::bitflags! {
44
///
45
/// All architecture-specific page table entry types implement this trait.
46
pub trait GenericPTE: Debug + Clone + Copy + Sync + Send + Sized {
47
- /// Create a page table entry point to a terminate page or block.
+ /// Creates a page table entry point to a terminate page or block.
48
fn new_page(paddr: PhysAddr, flags: MappingFlags, is_huge: bool) -> Self;
49
- /// Create a page table entry point to a next level page table.
+ /// Creates a page table entry point to a next level page table.
50
fn new_table(paddr: PhysAddr) -> Self;
51
52
/// Returns the physical address mapped by this entry.
0 commit comments