From eb69d37323de45d9abc61eacd87662b1f73004d2 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 19 Sep 2025 06:42:26 -0600 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: bjorn3 <4397-bjorn3@users.noreply.gitlab.redox-os.org> --- src/dtb/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dtb/mod.rs b/src/dtb/mod.rs index b71b819b73..464953ed64 100644 --- a/src/dtb/mod.rs +++ b/src/dtb/mod.rs @@ -22,7 +22,7 @@ pub static DTB_BINARY: Once<&'static [u8]> = Once::new(); /// /// Caller must ensure the base address and size reference valid memory. /// -/// The referenced memory must contain a valid DTB for the underliying system. +/// The referenced memory must contain a valid DTB for the underlying system. /// /// The referenced memory must **not** be mutated for the duration of kernel run-time. pub unsafe fn init(dtb: Option<(usize, usize)>) {