diff --git a/src/main/clojure/clojure/data/json.clj b/src/main/clojure/clojure/data/json.clj index 9588cf3..51f581f 100644 --- a/src/main/clojure/clojure/data/json.clj +++ b/src/main/clojure/clojure/data/json.clj @@ -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) @@ -825,4 +825,4 @@ :escape-unicode false to turn off \\uXXXX escapes of Unicode characters." [x & options] - (apply pprint x options)) \ No newline at end of file + (apply pprint x options))