From 205b6a13193092ad990df22efb30575f4ac01545 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Tue, 7 Jun 2016 10:51:08 -0400 Subject: [PATCH] fix MAP-VALS --- src/clj/com/rpl/specter.cljx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/clj/com/rpl/specter.cljx b/src/clj/com/rpl/specter.cljx index b655a15..dc794c9 100644 --- a/src/clj/com/rpl/specter.cljx +++ b/src/clj/com/rpl/specter.cljx @@ -169,9 +169,7 @@ MAP-VALS [] (select* [this structure next-fn] - (doseqres NONE [v (vals structure)] - (next-fn v) - )) + (doall (mapcat next-fn (vals structure)))) (transform* [this structure next-fn] (i/map-vals-transform structure next-fn) ))