diff options
author | Rich Hickey <richhickey@gmail.com> | 2008-05-28 16:37:30 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2008-05-28 16:37:30 +0000 |
commit | 32620dfd6f1a864d8798cdced9ccbbfe23edc951 (patch) | |
tree | 804c0e7377a877a671af7699b5aa3846800ae455 /src | |
parent | 166695ee5ebc4b891f73cc33296607fb09a882b5 (diff) |
fixed typo in empty
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.clj | 4 |
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 |