From 3a882fed29725c4e1aa48cb6e374aa5febbd5c50 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Sat, 8 Oct 2022 00:09:07 -0600 Subject: [PATCH] docs. --- src/mmio.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/mmio.rs b/src/mmio.rs index 883c1a0..35d9b3f 100644 --- a/src/mmio.rs +++ b/src/mmio.rs @@ -19,10 +19,9 @@ //! //! ## Safety //! -//! While it's safe to use this crate's data type definitions anywhere (they're -//! just wrappers for ints), the MMIO declarations in this module **must not** -//! be used outside of a GBA. The read and write safety of each address are -//! declared assuming that code is running on a GBA. On any other platform, the +//! The MMIO declarations and wrapper types in this module **must not** be used +//! outside of a GBA. The read and write safety of each address are declared +//! assuming that code is running on a GBA. On any other platform, the //! declarations are simply incorrect. use core::{ffi::c_void, mem::size_of};