From fdf70ae9c192b90a8c3bfe6c9295618b1c4dba08 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 24 Sep 2025 10:00:03 +0200 Subject: [PATCH] :sparkles: Fix docstring on common.weak ns function --- common/src/app/common/weak.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/app/common/weak.cljc b/common/src/app/common/weak.cljc index 87ae6cbc4b..f9efeb73e7 100644 --- a/common/src/app/common/weak.cljc +++ b/common/src/app/common/weak.cljc @@ -22,7 +22,7 @@ #?(:cljs (defn weak-map - "Create a WeakMap like instance what uses clojure equality + "Create a WeakMap-like instance what uses clojure equality semantics." [] (new wm/WeakEqMap #js {:hash hash :equals =})))