From f250941b123d4bf3a96123458adeff7e58f429ed Mon Sep 17 00:00:00 2001 From: Malchevskiy Misha Date: Thu, 24 Dec 2015 14:05:58 +0300 Subject: [PATCH] Fix bug in start-with-args --- src/mount/core.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mount/core.cljc b/src/mount/core.cljc index cfeaa0b..3244bb0 100644 --- a/src/mount/core.cljc +++ b/src/mount/core.cljc @@ -261,7 +261,7 @@ (defn start-with-args [xs & states] (reset! -args xs) (if (first states) - (start states) + (apply start states) (start))) (defn start-with [with]