From e4399cecb8b1e2d935d526af33405e997e2c1d5d Mon Sep 17 00:00:00 2001 From: Dan Minshew Date: Fri, 27 Oct 2017 19:31:52 -0500 Subject: [PATCH] typo fix `finised` -> `finished` --- src/cljs/typerooni/core.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cljs/typerooni/core.cljs b/src/cljs/typerooni/core.cljs index 4687ff1..4e0735c 100644 --- a/src/cljs/typerooni/core.cljs +++ b/src/cljs/typerooni/core.cljs @@ -301,7 +301,7 @@ (if game-has-not-started (start-game! state)) (if game-has-ended (end-game! state)) (if game-is-over-and-new-word (clear-input (:target input))) - (if (and (not (:finised @state)) (:running @state)) + (if (and (not (:finished @state)) (:running @state)) (go (>! keypress-input [input state]))))) (defn keydown-func [e state]