diff options
Diffstat (limited to 'src/clj/clojure/xml.clj')
-rw-r--r-- | src/clj/clojure/xml.clj | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/clj/clojure/xml.clj b/src/clj/clojure/xml.clj index caac770a..ba14d4c7 100644 --- a/src/clj/clojure/xml.clj +++ b/src/clj/clojure/xml.clj @@ -6,9 +6,11 @@ ; the terms of this license. ; You must not remove this notice, or any other, from this software. -(ns clojure.xml - (:import (org.xml.sax ContentHandler Attributes SAXException) - (javax.xml.parsers SAXParser SAXParserFactory))) +(ns #^{:doc "XML reading/writing." + :author "Rich Hickey"} + clojure.xml + (:import (org.xml.sax ContentHandler Attributes SAXException) + (javax.xml.parsers SAXParser SAXParserFactory))) (def *stack*) (def *current*) |