Skip to content

Commit

Permalink
Fix reduce<?-.
Browse files Browse the repository at this point in the history
  • Loading branch information
whilo committed Sep 19, 2020
1 parent ce025fe commit 1525673
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject io.replikativ/superv.async "0.2.10"
(defproject io.replikativ/superv.async "0.2.11"
:description "Supervised channel management for core.async."

:url "https://github.com/replikativ/superv.async"
Expand Down
2 changes: 1 addition & 1 deletion src/superv/async.cljc
Expand Up @@ -558,7 +558,7 @@ Throws if any result is an exception or the context has been aborted."
(loop [acc init
[f & r] s]
(if f
(let [maybe-ch (maybe-go-f S acc f)]
(let [maybe-ch (maybe-go-f acc f)]
(recur (if (chan? maybe-ch)
(<?- maybe-ch)
maybe-ch)
Expand Down

0 comments on commit 1525673

Please sign in to comment.