From 6f087a634dd377548a11fd903972509b86cea2d0 Mon Sep 17 00:00:00 2001 From: skydread1 Date: Fri, 4 Aug 2023 20:11:22 +0800 Subject: [PATCH] Update remove-empty-vals docstring --- common/src/flybot/common/validation.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/flybot/common/validation.cljc b/common/src/flybot/common/validation.cljc index c5e25576..31fe9ecd 100644 --- a/common/src/flybot/common/validation.cljc +++ b/common/src/flybot/common/validation.cljc @@ -162,7 +162,7 @@ #?(:clj (Integer/parseInt (str s)) :cljs (js/parseInt s))) (defn remove-empty-vals - "Given a map `m`, remove keys that have empty or nil values." + "Given a map `m`, remove keys that have empty maps or nil values." [m] (let [f (fn [x] (if (map? x)