Skip to content

Commit e611bd0

Browse files
committed
avoid call to assoc, use -assoc
1 parent ffacd23 commit e611bd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10624,7 +10624,7 @@ reduces them without incurring seq initialization"
1062410624
to a StringBuffer."
1062510625
[obj writer opts]
1062610626
(if-let [alt-impl (:alt-impl opts)]
10627-
(alt-impl obj writer (assoc opts :fallback-impl pr-writer-impl))
10627+
(alt-impl obj writer (-assoc opts :fallback-impl pr-writer-impl))
1062810628
(pr-writer-impl obj writer opts)))
1062910629

1063010630
(defn pr-seq-writer [objs writer opts]

0 commit comments

Comments
 (0)