From 6cd3b18ed9acde9752e95e185680acea3633ec8a Mon Sep 17 00:00:00 2001 From: Gabriel Horner Date: Thu, 27 Jul 2023 10:51:46 -0400 Subject: [PATCH] Add missing ns docstrings --- src/main/frontend/handler/db_based/property.cljs | 2 +- src/main/frontend/handler/file_based/property.cljs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/frontend/handler/db_based/property.cljs b/src/main/frontend/handler/db_based/property.cljs index 792e7bb73d..e102d6b90a 100644 --- a/src/main/frontend/handler/db_based/property.cljs +++ b/src/main/frontend/handler/db_based/property.cljs @@ -1,5 +1,5 @@ (ns frontend.handler.db-based.property - "Block properties handler." + "Properties handler for db graphs" (:require [clojure.edn :as edn] [clojure.string :as string] [frontend.db :as db] diff --git a/src/main/frontend/handler/file_based/property.cljs b/src/main/frontend/handler/file_based/property.cljs index f9465f8630..991876e862 100644 --- a/src/main/frontend/handler/file_based/property.cljs +++ b/src/main/frontend/handler/file_based/property.cljs @@ -1,4 +1,5 @@ (ns frontend.handler.file-based.property + "Properties handler for file graphs and file graph specific feature implementations" (:require [frontend.handler.file-based.property.util :as property] [frontend.config :as config]))