Skip to content

Commit

Permalink
Fixed typo (Rigellute#850)
Browse files Browse the repository at this point in the history
Overriding due to new clippy rules that are fixed in the upstream. These changes do not break the new rules.
  • Loading branch information
jusexton authored Aug 23, 2021
1 parent ebf75d9 commit 84b29bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/event/key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub enum Key {
Char(char),
Ctrl(char),
Alt(char),
Unkown,
Unknown,
}

impl Key {
Expand Down Expand Up @@ -199,7 +199,7 @@ impl From<event::KeyEvent> for Key {
..
} => Key::Char(c),

_ => Key::Unkown,
_ => Key::Unknown,
}
}
}

0 comments on commit 84b29bb

Please sign in to comment.