Skip to content

Commit 88facaa

Browse files
committed
fix bug in implementation of for
1 parent dd442f1 commit 88facaa

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog #
22

3+
## Version 2.4.1
4+
5+
Date: 2020-11-04
6+
7+
- Fix bug in `for` implementation
8+
39
## Version 2.4.0
410

511
Date: 2020-11-03

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject funcool/cats "2.4.0"
1+
(defproject funcool/cats "2.4.1"
22
:description "Category Theory abstractions for Clojure"
33
:url "https://github.com/funcool/cats"
44
:license {:name "BSD (2 Clause)"

src/cats/core.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,7 @@
819819
820820
See cats.core/sequence
821821
See clojure.core/for"
822-
[seq-exprs mv]
822+
[seq-exprs body-expr]
823823
`(sequence (clojure.core/for ~seq-exprs ~body-expr)))
824824

825825
(defn mapseq

0 commit comments

Comments
 (0)