aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFenrir <[email protected]>2019-04-14 15:13:40 -0600
committerFenrir <[email protected]>2019-04-14 15:13:40 -0600
commit6070ddb0330f3e87e583e23dd1f8df521b394d26 (patch)
tree521e25bc2cd04beadd7587ba4158101afc44e4b8
parentQUERTY -> QWERTY (diff)
downloadctru-rs-6070ddb0330f3e87e583e23dd1f8df521b394d26.tar.xz
ctru-rs-6070ddb0330f3e87e583e23dd1f8df521b394d26.zip
Actually fix every instance of `Qwerty` this time
-rw-r--r--ctru-rs/src/applets/swkbd.rs4
1 files 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,
}