Correct wiki links

This commit is contained in:
mike-thompson-day8 2015-04-08 09:12:47 +10:00
parent 2c59552482
commit 89f5344a86
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@
(if (nil? event-v)
(warn "re-frame: \"dispatch\" is ignoring a nil event.") ;; nil would close the channel
(put! event-chan event-v))
nil) ;; Ensure nil return. See https://github.com/Day8/re-frame/wiki/Returning-False
nil) ;; Ensure nil return. See https://github.com/Day8/re-frame/wiki/Beware-Returning-False
(defn dispatch-sync
@ -59,6 +59,6 @@
(dispatch-sync [:delete-item 42])"
[event-v]
(handle event-v)
nil) ;; Ensure nil return. See https://github.com/Day8/re-frame/wiki/Returning-False
nil) ;; Ensure nil return. See https://github.com/Day8/re-frame/wiki/Beware-Returning-False