aboutsummaryrefslogtreecommitdiffstats
path: root/util/generate-hooks-index/src/generate_hooks_index/core.clj
diff options
context:
space:
mode:
Diffstat (limited to 'util/generate-hooks-index/src/generate_hooks_index/core.clj')
-rw-r--r--util/generate-hooks-index/src/generate_hooks_index/core.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generate-hooks-index/src/generate_hooks_index/core.clj b/util/generate-hooks-index/src/generate_hooks_index/core.clj
index ac9e72f90..2112647b0 100644
--- a/util/generate-hooks-index/src/generate_hooks_index/core.clj
+++ b/util/generate-hooks-index/src/generate_hooks_index/core.clj
@@ -53,14 +53,14 @@
[path]
[:div
[:h3 "Hooks"]
- [:p "Generated " (-> (java.util.Date.) str)]
[:table
[:tr (map #(vector :td %) ["Function" "Source File" "Arg"])]
(for [{:keys [function arg file]}
(->> path
show-hooks
(sort-by :function))]
- [:tr (map #(vector :td (h/h %)) [function file arg])])]])
+ [:tr (map #(vector :td (h/h %)) [function file arg])])]
+ [:p "Generated " (-> (java.util.Date.) str)]])
(defn make-hook-docs