diff options
author | Stuart Halloway <stu@thinkrelevance.com> | 2010-12-17 15:17:20 -0500 |
---|---|---|
committer | Stuart Halloway <stu@thinkrelevance.com> | 2010-12-19 16:18:26 -0500 |
commit | f30995c86056959abca53d0ca35dcb9cfa73e6e6 (patch) | |
tree | 69a8b984cd60beaefda45ad8eb0886c14093aa13 | |
parent | c5732ac810a2e2806e6309b006566315de36f2c7 (diff) |
#687: modify doc string to match enhancement to str/join
Signed-off-by: Stuart Halloway <stu@thinkrelevance.com>
-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)) |