From 012ead65b5da866c147e401732ed4cb05a191cc0 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Mon, 20 Feb 2023 12:18:40 +0100 Subject: [PATCH] :tada: Add missing ::us/atom global spec --- common/src/app/common/spec.cljc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/src/app/common/spec.cljc b/common/src/app/common/spec.cljc index 65926a005..435512f93 100644 --- a/common/src/app/common/spec.cljc +++ b/common/src/app/common/spec.cljc @@ -252,6 +252,9 @@ #?(:clj (s/def ::agent #(instance? clojure.lang.Agent %))) +#?(:clj + (s/def ::atom #(instance? clojure.lang.Atom %))) + (defn bytes? "Test if a first parameter is a byte array or not."