aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/map_utils.clj
diff options
context:
space:
mode:
authorTom Faulhaber <git_net@infolace.com>2009-05-04 05:34:00 +0000
committerTom Faulhaber <git_net@infolace.com>2009-05-04 05:34:00 +0000
commit86e90011e274910c618a5592d21ba3ce290a6855 (patch)
treef5bedd2f64d52b0050662f637b2d084a3c05356a /src/clojure/contrib/map_utils.clj
parent870a47e859bdea719e253e8116f7da8b115594ce (diff)
Lots 'o doc strings
Diffstat (limited to 'src/clojure/contrib/map_utils.clj')
-rw-r--r--src/clojure/contrib/map_utils.clj7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/clojure/contrib/map_utils.clj b/src/clojure/contrib/map_utils.clj
index 3862fcee..4adf3068 100644
--- a/src/clojure/contrib/map_utils.clj
+++ b/src/clojure/contrib/map_utils.clj
@@ -13,7 +13,10 @@
;; jason at w01fe dot com
;; Created 25 Feb 2009
-(ns clojure.contrib.map-utils)
+(ns
+ #^{:author "Jason Wolfe, Chris Houser",
+ :doc "Utilities for operating on Clojure maps."}
+ clojure.contrib.map-utils)
(defmacro lazy-get
@@ -36,7 +39,7 @@
; by Chouser:
(defn deep-merge-with
- "Like merge-with, but merges maps recursively, appling the given fn
+ "Like merge-with, but merges maps recursively, applying the given fn
only when there's a non-map at a particular level.
(deepmerge + {:a {:b {:c 1 :d {:x 1 :y 2}} :e 3} :f 4}