Switch from using `doall` to `dorun`

This commit is contained in:
Mike Thompson 2016-07-18 23:54:39 +10:00
parent f852661719
commit 3311d02c22
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@
"There are cases where eitherone event is to be dipatch "
[effect]
(cond
(list? effect) (doall (map dispatch effect))
(list? effect) (dorun (map dispatch effect))
(vector? effect) (dispatch effect)
:else (console :error "re-frame: expected :dispatch effect to be a list or vector, but got: " effect)))