diff --git a/ostd/src/mm/page/mod.rs b/ostd/src/mm/page/mod.rs index 3b5381647..9d9e14b70 100644 --- a/ostd/src/mm/page/mod.rs +++ b/ostd/src/mm/page/mod.rs @@ -59,9 +59,9 @@ impl Page { let vaddr = mapping::page_to_meta::(paddr); let ptr = vaddr as *const MetaSlot; - // SAFETY: The aligned pointer points to a initialized `MetaSlot`. + // SAFETY: The aligned pointer points to an initialized `MetaSlot`. let usage = unsafe { &(*ptr).usage }; - // SAFETY: The aligned pointer points to a initialized `MetaSlot`. + // SAFETY: The aligned pointer points to an initialized `MetaSlot`. let ref_count = unsafe { &(*ptr).ref_count }; usage