summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2009-11-13 06:50:10 -0500
committerRich Hickey <richhickey@gmail.com>2009-11-13 06:50:10 -0500
commit841dc9c9df717ee665b95e9471dc5e01b5c113eb (patch)
treef80250454e43642569f064cbfd6b9a1fdc8c8f17
parent5f96d1cb7eeac29b3894e63ce9e17f29d062d15d (diff)
fix some's doc string
-rw-r--r--src/clj/clojure/core.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj
index d20e10a1..9c074092 100644
--- a/src/clj/clojure/core.clj
+++ b/src/clj/clojure/core.clj
@@ -1717,7 +1717,7 @@
(defn some
"Returns the first logical true value of (pred x) for any x in coll,
else nil. One common idiom is to use a set as pred, for example
- this will return true if :fred is in the sequence, otherwise nil:
+ this will return :fred if :fred is in the sequence, otherwise nil:
(some #{:fred} coll)"
[pred coll]
(when (seq coll)