diff options
author | Stuart Halloway <stu@thinkrelevance.com> | 2009-08-17 19:15:35 -0400 |
---|---|---|
committer | Stuart Halloway <stu@thinkrelevance.com> | 2009-08-17 19:15:35 -0400 |
commit | 07eef46b22f27a61784c11be03ff0159fac50b38 (patch) | |
tree | 95d138ba31c757592f85e826c02fdff40a222dbd /src/clojure/contrib/pprint.clj | |
parent | cb35f77f5b5bea740120bc649ae82c8015c7ca4c (diff) | |
parent | 76a841f9e4f2e184beabe693856572dff265cab7 (diff) |
Merge branch 'master' of git@github.com:richhickey/clojure-contrib
Diffstat (limited to 'src/clojure/contrib/pprint.clj')
-rw-r--r-- | src/clojure/contrib/pprint.clj | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/clojure/contrib/pprint.clj b/src/clojure/contrib/pprint.clj index f11d0a71..2c6c34f6 100644 --- a/src/clojure/contrib/pprint.clj +++ b/src/clojure/contrib/pprint.clj @@ -14,13 +14,14 @@ (ns #^{: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. +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 Java-based format function. -Complete documentation is available on the wiki at the contrib google code site.", - :see-also [["PrettyPrinting" "Documentation for the pretty printer"] - ["CommonLispFormat" "Documentation for Common Lisp format function"]] +See documentation for those functions for more information or complete +documentation on the the clojure-contrib web site on github.", } clojure.contrib.pprint (:use clojure.contrib.pprint.utilities) |