Quellcode durchsuchen

Add missing ns docstrings

Gabriel Horner vor 2 Jahren
Ursprung
Commit
6cd3b18ed9

+ 1 - 1
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]

+ 1 - 0
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]))