diff options
author | Rich Hickey <richhickey@gmail.com> | 2009-11-13 06:50:10 -0500 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2009-11-13 06:50:10 -0500 |
commit | 841dc9c9df717ee665b95e9471dc5e01b5c113eb (patch) | |
tree | f80250454e43642569f064cbfd6b9a1fdc8c8f17 | |
parent | 5f96d1cb7eeac29b3894e63ce9e17f29d062d15d (diff) |
fix some's doc string
-rw-r--r-- | src/clj/clojure/core.clj | 2 |
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) |