aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/pprint.clj
diff options
context:
space:
mode:
authorTom Faulhaber <git_net@infolace.com>2009-04-06 00:47:50 +0000
committerTom Faulhaber <git_net@infolace.com>2009-04-06 00:47:50 +0000
commita43c0a7e8229ab60a731b80d8c42112e67d747a4 (patch)
tree31a73b378090fe400b5964088ac63dd8b374cbfd /src/clojure/contrib/pprint.clj
parent50e5f78e9bc491f8880d76c086ca4cad28308b41 (diff)
Mucked around with the headers to make them more clojure.contrib friendly
Diffstat (limited to 'src/clojure/contrib/pprint.clj')
-rw-r--r--src/clojure/contrib/pprint.clj28
1 files changed, 21 insertions, 7 deletions
diff --git a/src/clojure/contrib/pprint.clj b/src/clojure/contrib/pprint.clj
index 2e2ba461..a9198b02 100644
--- a/src/clojure/contrib/pprint.clj
+++ b/src/clojure/contrib/pprint.clj
@@ -1,10 +1,24 @@
-; Copyright (c) Tom Faulhaber, March 2009. All rights reserved.
-; The use and distribution terms for this software are covered by the
-; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
-; which can be found in the file epl-v10.html at the root of this distribution.
-; By using this software in any fashion, you are agreeing to be bound by
-; the terms of this license.
-; You must not remove this notice, or any other, from this software.
+;;; pprint.clj -- Pretty printer and Common Lisp compatible format function (cl-format) for Clojure
+
+;; by Tom Faulhaber
+;; April 3, 2009
+
+;; Copyright (c) Tom Faulhaber, April 2009. All rights reserved.
+;; The use and distribution terms for this software are covered by the
+;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
+;; which can be found in the file epl-v10.html at the root of this distribution.
+;; By using this software in any fashion, you are agreeing to be bound by
+;; the terms of this license.
+;; You must not remove this notice, or any other, from this software.
+
+;; 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
+;; clojure.contrib (either to the wiki or some other document structure) RSN.
(ns clojure.contrib.pprint
(:use clojure.contrib.pprint.utilities)