Use if-not instead of (if (not))

This commit is contained in:
Szabó Krisztián 2015-07-26 19:57:17 +02:00
parent b566c08f40
commit e0c816859f
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
[handler]
(fn pure-handler
[app-db event-vec]
(if (not (satisfies? IReactiveAtom app-db))
(if-not (satisfies? IReactiveAtom app-db)
(do
(if (map? app-db)
(warn "re-frame: Looks like \"pure\" is in the middleware pipeline twice. Ignoring.")