Skip to content

Commit 3b06db3

Browse files
committed
syntax typo
1 parent 129bcef commit 3b06db3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ following differences:
5454

5555
1. They have transient counterparts:
5656

57-
(persistent! (assoc! (transient (avl/sorted-map) 0 0)))
57+
(persistent! (assoc! (transient (avl/sorted-map)) 0 0))
5858
;= {0 0}
5959

6060
and use transients during construction:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>data.avl</artifactId>
5-
<version>0.0.19-SNAPSHOT</version>
5+
<version>0.0.19.1-SNAPSHOT</version>
66
<name>data.avl</name>
77
<description>Persistent sorted maps and sets with log-time rank queries</description>
88

src/main/cljs/clojure/data/avl.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@
697697
(avl-map-reduce (.getLeft node) f init))]
698698
(if (reduced? init)
699699
init
700-
(let [init (f init (MapEntry. (.getKey node) (.getVal node) nil)]
700+
(let [init (f init (MapEntry. (.getKey node) (.getVal node) nil))]
701701
(if (reduced? init)
702702
init
703703
(if (nil? (.getRight node))

0 commit comments

Comments
 (0)