We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0720752 commit 7947b16Copy full SHA for 7947b16
1 file changed
src/main/clojure/clojure/data/xml/node.cljc
@@ -151,13 +151,13 @@
151
[IPrintWithWriter
152
(-pr-writer [this writer opts]
153
(-write writer "#xml/element{:tag ")
154
- (-pr-writer tag writer opts)
+ (pr-writer tag writer opts)
155
(when-not (empty? attrs)
156
(-write writer ", :attrs ")
157
- (-pr-writer attrs writer opts))
+ (pr-writer attrs writer opts))
158
(when-not (empty? content)
159
(-write writer ", :content ")
160
- (pr-sequential-writer writer -pr-writer "[" " " "]" opts content))
+ (pr-sequential-writer writer pr-writer "[" " " "]" opts content))
161
(-write writer "}"))]))
162
163
;; clj printing is a multimethod
0 commit comments