From f977306382caacb1f4b2f49e131ca7c49719b5d0 Mon Sep 17 00:00:00 2001 From: Lokathor Date: Sun, 12 Feb 2023 00:42:23 -0700 Subject: [PATCH] spelling --- src/keys.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keys.rs b/src/keys.rs index f0020a3..9b14da4 100644 --- a/src/keys.rs +++ b/src/keys.rs @@ -21,12 +21,12 @@ //! main game loop checks the flag each frame and performs a soft reset instead //! of the normal game simulation when the flag is set. -use core::ops; use crate::macros::{pub_const_fn_new_zeroed, u16_bool_field}; +use core::ops; /// [`KEYINPUT`](crate::prelude::KEYINPUT): Key input data. /// -/// Each key on the GBA is reprisented by a single bit within this value, so all +/// Each key on the GBA is represented by a single bit within this value, so all /// button state can be captured in the same moment. The `input.getter()` method /// for each button will return `true` if that button was held down at the time /// of reading this input data.