Skip to content

Commit

Permalink
Merge branch 'master' of github.com:clojure/data.json
Browse files Browse the repository at this point in the history
  • Loading branch information
puredanger committed Dec 20, 2023
2 parents ed34298 + d51234e commit ab13445
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/clojure/clojure/data/json.clj
Original file line number Diff line number Diff line change
Expand Up @@ -753,8 +753,8 @@
:else (pprint-generic x options)))

(defn pprint
"Pretty-prints JSON representation of x to *out*. Options are the
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."
[x & {:as options}]
(let [opts (merge default-write-options options)]
(pprint/with-pprint-dispatch #(pprint-dispatch % opts)
Expand Down Expand Up @@ -825,4 +825,4 @@
:escape-unicode false
to turn off \\uXXXX escapes of Unicode characters."
[x & options]
(apply pprint x options))
(apply pprint x options))

0 comments on commit ab13445

Please sign in to comment.