From 9e5373509ef16a2a194a75affea68b94b1190753 Mon Sep 17 00:00:00 2001 From: Sho Hirose Date: Mon, 1 Nov 2021 12:59:39 +0900 Subject: [PATCH] fix typo (#130) * fixed typo * add a target to ignore * Revert "add a target to ignore" This reverts commit c33fee37 --- src/event/key.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/event/key.rs b/src/event/key.rs index 0f92fb3..c40240c 100644 --- a/src/event/key.rs +++ b/src/event/key.rs @@ -69,7 +69,7 @@ pub enum Key { Char(char), Ctrl(char), Alt(char), - Unkown, + Unknown, } impl Key { @@ -207,7 +207,7 @@ impl From for Key { .. } => Key::Char(c), - _ => Key::Unkown, + _ => Key::Unknown, } } }