diff options
-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) |