From 23705cd7ed1273ab02ec13d5ddefa9b5485e1d3f Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Fri, 22 Dec 2023 14:51:43 +0200 Subject: [PATCH] chore(docs): Fix typo --- machine/src/arch/aarch64/cpu/boot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine/src/arch/aarch64/cpu/boot.rs b/machine/src/arch/aarch64/cpu/boot.rs index 752b186..4f0e262 100644 --- a/machine/src/arch/aarch64/cpu/boot.rs +++ b/machine/src/arch/aarch64/cpu/boot.rs @@ -222,7 +222,7 @@ unsafe fn reset() -> ! { // arithmetic on them directly may lead to Undefined Behavior, because the // compiler may assume they come from different allocations and thus performing // undesirable optimizations on them. - // So we use a painter-and-a-size as described in provenance section. + // So we use a pointer-and-a-size as described in provenance section. let bss = slice::from_raw_parts_mut( __BSS_START.get() as *mut u64,