diff options
Diffstat (limited to 'src/clojure/contrib/gen_html_docs.clj')
-rw-r--r-- | src/clojure/contrib/gen_html_docs.clj | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/clojure/contrib/gen_html_docs.clj b/src/clojure/contrib/gen_html_docs.clj index 28db5b32..d88a9c77 100644 --- a/src/clojure/contrib/gen_html_docs.clj +++ b/src/clojure/contrib/gen_html_docs.clj @@ -41,7 +41,11 @@ ;; * Add license statement ;; * Remove the whojure dependency -(ns clojure.contrib.gen-html-docs +(ns + #^{:author "Craig Andera", + :doc "Generates a single HTML page that contains the documentation for +one or more Clojure libraries."} + clojure.contrib.gen-html-docs (:require [clojure.contrib.duck-streams :as duck-streams]) (:use [clojure.contrib seq-utils str-utils repl-utils def prxml]) (:import [java.lang Exception] @@ -537,4 +541,4 @@ emits the generated HTML to the path named by path." 'clojure.contrib.test-contrib.str-utils 'clojure.contrib.zip-filter.xml ])) - )
\ No newline at end of file + ) |