summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2008-05-28 16:37:30 +0000
committerRich Hickey <richhickey@gmail.com>2008-05-28 16:37:30 +0000
commit32620dfd6f1a864d8798cdced9ccbbfe23edc951 (patch)
tree804c0e7377a877a671af7699b5aa3846800ae455 /src
parent166695ee5ebc4b891f73cc33296607fb09a882b5 (diff)
fixed typo in empty
Diffstat (limited to 'src')
-rw-r--r--src/boot.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot.clj b/src/boot.clj
index 3bd38a05..43b94bd7 100644
--- a/src/boot.clj
+++ b/src/boot.clj
@@ -2429,6 +2429,6 @@ not-every? (comp not every?))
(.setMeta v# (assoc ^v# :inline ~inline))))))
(defn empty
- "Returns an empty collection of the same category as coll, or null"
- [#^ clojure.lang.IPersistentCollection coll]
+ "Returns an empty collection of the same category as coll, or nil"
+ [#^clojure.lang.IPersistentCollection coll]
(.empty coll)) \ No newline at end of file