aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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)))