fix missing alias

This commit is contained in:
Christophe Grand 2016-11-03 09:43:49 -05:00
parent 8d240ed6ef
commit dfd401f647
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ Transducing context: `transjuxt` (for performing several transductions in a sing
Add this dependency to your project:
```clj
[net.cgrand/xforms "0.5.0"]
[net.cgrand/xforms "0.5.1"]
```
```clj

View file

@ -1,4 +1,4 @@
(defproject net.cgrand/xforms "0.5.0"
(defproject net.cgrand/xforms "0.5.1"
:description "Extra transducers for Clojure"
#_#_:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"

View file

@ -278,7 +278,7 @@
(if (zero? b)
; this transduce may return a reduced because of mxrf wrapping reduceds coming from rf
(let [acc (transduce xform mxrf acc dq)]
(dotimes [_ (min n step)] (.poll dq))
(dotimes [_ (clj/min n step)] (.poll dq))
(vswap! barrier + step)
acc)
acc)))))))