Skip to content

Commit 16f555a

Browse files
committed
doc: add documents of some crates
1 parent 7bfc0d5 commit 16f555a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ bitflags::bitflags! {
4444
///
4545
/// All architecture-specific page table entry types implement this trait.
4646
pub trait GenericPTE: Debug + Clone + Copy + Sync + Send + Sized {
47-
/// Create a page table entry point to a terminate page or block.
47+
/// Creates a page table entry point to a terminate page or block.
4848
fn new_page(paddr: PhysAddr, flags: MappingFlags, is_huge: bool) -> Self;
49-
/// Create a page table entry point to a next level page table.
49+
/// Creates a page table entry point to a next level page table.
5050
fn new_table(paddr: PhysAddr) -> Self;
5151

5252
/// Returns the physical address mapped by this entry.

0 commit comments

Comments
 (0)