We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed34298 + d51234e commit ab13445Copy full SHA for ab13445
1 file changed
src/main/clojure/clojure/data/json.clj
@@ -753,8 +753,8 @@
753
:else (pprint-generic x options)))
754
755
(defn pprint
756
- "Pretty-prints JSON representation of x to *out*. Options are the
757
- same as for write except :value-fn, which is not supported."
+ "Pretty-prints JSON representation of x to *out*. Options are the same
+ as for write except :value-fn and :indent, which are not supported."
758
[x & {:as options}]
759
(let [opts (merge default-write-options options)]
760
(pprint/with-pprint-dispatch #(pprint-dispatch % opts)
@@ -825,4 +825,4 @@
825
:escape-unicode false
826
to turn off \\uXXXX escapes of Unicode characters."
827
[x & options]
828
- (apply pprint x options))
+ (apply pprint x options))
0 commit comments