From 6070ddb0330f3e87e583e23dd1f8df521b394d26 Mon Sep 17 00:00:00 2001 From: Fenrir Date: Sun, 14 Apr 2019 15:13:40 -0600 Subject: [PATCH] Actually fix every instance of `Qwerty` this time --- ctru-rs/src/applets/swkbd.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ctru-rs/src/applets/swkbd.rs b/ctru-rs/src/applets/swkbd.rs index dc84d1b..1c14cab 100644 --- a/ctru-rs/src/applets/swkbd.rs +++ b/ctru-rs/src/applets/swkbd.rs @@ -15,14 +15,14 @@ pub struct Swkbd { /// The kind of keyboard to be initialized. /// /// Normal is the full keyboard with several pages (QWERTY/accents/symbol/mobile) -/// Querty is a QWERTY-only keyboard. +/// Qwerty is a QWERTY-only keyboard. /// Numpad is a number pad. /// Western is a text keyboard without japanese symbols (only applies to JPN systems). For other /// systems it's the same as a Normal keyboard. #[derive(Copy, Clone, Debug)] pub enum Kind { Normal, - Querty, + Qwerty, Numpad, Western, }