aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Faulhaber <git_net@infolace.com>2009-04-17 07:25:23 +0000
committerTom Faulhaber <git_net@infolace.com>2009-04-17 07:25:23 +0000
commitb0179b612c0fc7dcc9a4e4115bbbfb1330442109 (patch)
tree4b08b732bccf768ac4715d18fdd93c71aaaa15da
parente2db839a3ce9c5aa4cc0e287f560d6600b683f3a (diff)
Updates for autodoc
-rw-r--r--src/clojure/contrib/pprint.clj16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/clojure/contrib/pprint.clj b/src/clojure/contrib/pprint.clj
index a468470e..42fcff1e 100644
--- a/src/clojure/contrib/pprint.clj
+++ b/src/clojure/contrib/pprint.clj
@@ -17,17 +17,27 @@
;; Clojure is using the name "format" for its own format.
;;
;; The most complete documentation can be found at http://github.com/tomfaulhaber/cl-format
-;; where I the markdown README is currently displayed. I will be moving it into
+;; where the markdown README is currently displayed. I will be moving it into
;; clojure.contrib (either to the wiki or some other document structure) RSN.
(ns
- #^{:doc "This module comprises two elements:
+ #^{:author "Tom Faulhaber",
+ :doc "This module comprises two elements:
1) A pretty printer for Clojure data structures, implemented in the function \"pprint\"
2) A Common Lisp compatible format function, implemented as \"cl-format\" because
Clojure is using the name \"format\" for its own format.
The most complete documentation can be found at http://github.com/tomfaulhaber/cl-format
-where I the markdown README is currently displayed. I will be moving it into
+where the markdown README is currently displayed. I will be moving it into
+clojure.contrib (either to the wiki or some other document structure) RSN.
+",
+ :wiki-doc "This module comprises two elements:
+# A pretty printer for Clojure data structures, implemented in the function \"pprint\"
+# A Common Lisp compatible format function, implemented as \"cl-format\" because
+Clojure is using the name \"format\" for its own format.
+
+The most complete documentation can be found at http://github.com/tomfaulhaber/cl-format
+where the markdown README is currently displayed. I will be moving it into
clojure.contrib (either to the wiki or some other document structure) RSN.
"}
clojure.contrib.pprint