aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Sierra <mail@stuartsierra.com>2009-08-20 11:32:10 -0400
committerStuart Sierra <mail@stuartsierra.com>2009-08-20 11:32:10 -0400
commit7b661cfc55e2293d14bed4fd801c017b3f68d291 (patch)
tree28179401c59a299260562ef1eb243f990a86c8f3
parentef69dc58760232c75b55e91d405116aa5ed03d51 (diff)
base64.clj: added namespace metadata doc
-rw-r--r--src/clojure/contrib/base64.clj7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/clojure/contrib/base64.clj b/src/clojure/contrib/base64.clj
index 1243dfee..5e1e3310 100644
--- a/src/clojure/contrib/base64.clj
+++ b/src/clojure/contrib/base64.clj
@@ -12,7 +12,12 @@
;; remove this notice, or any other, from this software.
-(ns clojure.contrib.base64
+(ns #^{:doc "Base-64 encoding and (maybe later) decoding.
+
+ This is mainly here as an example. It is much slower than the
+ Apache Commons Codec implementation or sun.misc.BASE64Encoder."
+ :author "Stuart Sierra"}
+ clojure.contrib.base64
(:import (java.io InputStream Writer ByteArrayInputStream
StringWriter)))