diff options
-rw-r--r-- | src/clj/clojure/string.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clj/clojure/string.clj b/src/clj/clojure/string.clj index a24a7322..188b518e 100644 --- a/src/clj/clojure/string.clj +++ b/src/clj/clojure/string.clj @@ -128,8 +128,8 @@ Design notes for clojure.string: (defn ^String join - "Returns a string of all elements in coll, separated by - an optional separator. Like Perl's join." + "Returns a string of all elements in coll, as returned by (seq coll), + separated by an optional separator." {:added "1.2"} ([coll] (apply str coll)) |