From 51d0aead8abac18105d5b01b4b87f5fd35488c4a Mon Sep 17 00:00:00 2001 From: Riey Date: Sat, 16 Jan 2021 00:16:35 +0900 Subject: [PATCH] Fix typo --- engine/src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/config.rs b/engine/src/config.rs index ef5bef9a..b020a29a 100644 --- a/engine/src/config.rs +++ b/engine/src/config.rs @@ -39,7 +39,7 @@ pub struct RawConfig { impl Default for RawConfig { fn default() -> Self { - const DEFAULT_HANGUK_KEYS: &[Key] = &[ + const DEFAULT_HANGUL_KEYS: &[Key] = &[ Key::normal(KeyCode::AltR), Key::normal(KeyCode::Henkan), Key::normal(KeyCode::Hangul), @@ -49,7 +49,7 @@ impl Default for RawConfig { Self { layout: "dubeolsik".to_string(), esc_turn_off: true, - hangul_keys: DEFAULT_HANGUK_KEYS + hangul_keys: DEFAULT_HANGUL_KEYS .iter() .map(ToString::to_string) .collect(),