diff --git a/src/main/clojure/clojure/data/json.clj b/src/main/clojure/clojure/data/json.clj index 0744258..219d480 100644 --- a/src/main/clojure/clojure/data/json.clj +++ b/src/main/clojure/clojure/data/json.clj @@ -739,8 +739,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) @@ -811,4 +811,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))