File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1795,8 +1795,10 @@ reduces them without incurring seq initialization"
17951795

17961796
(defn conj
17971797
"conj[oin]. Returns a new collection with the xs
1798-
'added'. (conj nil item) returns (item). The 'addition' may
1799-
happen at different 'places' depending on the concrete type."
1798+
'added'. (conj nil item) returns (item).
1799+
(conj coll) returns coll. (conj) returns [].
1800+
The 'addition' may happen at different 'places' depending
1801+
on the concrete type."
18001802
([] [])
18011803
([coll] coll)
18021804
([coll x]

0 commit comments

Comments
 (0)