From 0d50d5efc92aa1cf3d25e2b45ef34f5811f9eb5b Mon Sep 17 00:00:00 2001 From: dimovich Date: Sat, 29 Dec 2018 21:06:54 +0200 Subject: [PATCH] Fix extra curly bracket. --- src/vimsical/re_frame/cofx/inject.cljc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vimsical/re_frame/cofx/inject.cljc b/src/vimsical/re_frame/cofx/inject.cljc index 189336c..7a4cd06 100644 --- a/src/vimsical/re_frame/cofx/inject.cljc +++ b/src/vimsical/re_frame/cofx/inject.cljc @@ -65,7 +65,7 @@ (re-frame/reg-event-fx ::simple-handler [(re-frame/inject-cofx ::inject/sub [::simple]]] - (fn [{:as cofx {::keys [simple]} params] + (fn [{:as cofx ::keys [simple]} params] ...) @@ -79,7 +79,7 @@ (fn [[_ arg1 arg2]] ... [::dynamic arg1 arg2]))] - (fn [{:as cofx {::keys [dynamic]} [_ arg1 arg-2]] + (fn [{:as cofx ::keys [dynamic]} [_ arg1 arg-2]] ...) " (fn [coeffects query-vector-or-event->query-vector-fn]