Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Riey committed Jan 15, 2021
1 parent a560847 commit 51d0aea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand All @@ -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(),
Expand Down

0 comments on commit 51d0aea

Please sign in to comment.