fix a couple of comment typos

This commit is contained in:
Stephen C. Gilardi 2015-11-06 22:50:50 -05:00
parent 780ae49e7d
commit 38120c4913
1 changed files with 3 additions and 2 deletions

View File

@ -51,7 +51,8 @@
;; etc. So it is modeled explicitly as a FSM.
;; See "-fsm-trigger" (below) for the states and transitions.
;; - the scheduling is done via "goog.async.nextTick" which is pretty quick
;; - when the event has :dom-flush we schedule via "reagent.impl.batching.doLater"
;; - when the event has :flush-dom we schedule via
;; "reagent.impl.batching.do-later"
;; which will run event processing after the next reagent animation frame.
;;
@ -142,7 +143,7 @@
[:quiescent :add-event] [:scheduled #(do (-add-event this arg)
(-run-next-tick this))]
;; processing has been already been scheduled to run in the future
;; processing has already been scheduled to run in the future
[:scheduled :add-event] [:scheduled #(-add-event this arg)]
[:scheduled :begin-run] [:running #(-run-queue this)]