diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2009-05-14 18:32:39 +0000 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2009-05-14 18:32:39 +0000 |
commit | e087b142ec45702a957ec8328a1d60659976ffe3 (patch) | |
tree | 86e37feb9f9a01b3f97f6d4671697219ea1bca52 | |
parent | f79532a56bc284f76b65a0fe7a9b4f5b602b658d (diff) |
jsov/read.clj: doc string
-rw-r--r-- | src/clojure/contrib/json/read.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clojure/contrib/json/read.clj b/src/clojure/contrib/json/read.clj index d652106e..25fcf074 100644 --- a/src/clojure/contrib/json/read.clj +++ b/src/clojure/contrib/json/read.clj @@ -53,8 +53,8 @@ (declare read-json) (def #^{:doc "If true, JSON object keys will be converted to keywords - instead of strings. Defaults to false. There are no checks that the strings form valid - keywords."} *json-keyword-keys* false) + instead of strings. Defaults to false. There are no checks that + the strings form valid keywords."} *json-keyword-keys* false) (defn- read-json-array [#^PushbackReader stream] ;; Expects to be called with the head of the stream AFTER the |