Fix typo in comments of simple/core.cljs

This commit is contained in:
Prof Gra 2017-07-13 15:37:27 +02:00 committed by Christophe Gragnic
parent fa081e8b26
commit 2313c9d509
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
(rf/dispatch [:timer now]))) ;; <-- dispatch used
;; Call the dispatching function every second.
;; `defonce` is like `def` but it ensures only instance is ever
;; `defonce` is like `def` but it ensures only instance one is ever
;; created in the face of figwheel hot-reloading of this file.
(defonce do-timer (js/setInterval dispatch-timer-event 1000))