diff options
author | Stuart Sierra <mail@stuartsierra.com> | 2009-05-12 20:15:39 +0000 |
---|---|---|
committer | Stuart Sierra <mail@stuartsierra.com> | 2009-05-12 20:15:39 +0000 |
commit | 68dae64556c970555317a21bcaae2bf0e1ee2cf4 (patch) | |
tree | 79fd9fe708ba4872eaedc1651107b04cde0ac208 /src/clojure/contrib/json | |
parent | f7b98d0d5e85bf2dbd9d1601d2ff7b5990700a98 (diff) |
json/read.clj: doc string
Diffstat (limited to 'src/clojure/contrib/json')
-rw-r--r-- | src/clojure/contrib/json/read.clj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/clojure/contrib/json/read.clj b/src/clojure/contrib/json/read.clj index 1f449d10..4cb40cf4 100644 --- a/src/clojure/contrib/json/read.clj +++ b/src/clojure/contrib/json/read.clj @@ -40,7 +40,11 @@ implementation of JSON as described at json.org, not a full-fledged JavaScript parser. JavaScript functions and object constructors are not supported. Object field names must be quoted strings; they - may not be bare symbols.", + may not be bare symbols. + + If you want to convert map keys from strings to keywords, use + clojure.contrib.walk/keywordize-keys +", :see-also [["http://www.json.org", "JSON Home Page"]]} clojure.contrib.json.read (:import (java.io PushbackReader StringReader EOFException)) |