aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/json
diff options
context:
space:
mode:
Diffstat (limited to 'src/clojure/contrib/json')
-rw-r--r--src/clojure/contrib/json/read.clj2
-rw-r--r--src/clojure/contrib/json/write.clj2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/clojure/contrib/json/read.clj b/src/clojure/contrib/json/read.clj
index 084f2a12..47d73499 100644
--- a/src/clojure/contrib/json/read.clj
+++ b/src/clojure/contrib/json/read.clj
@@ -41,7 +41,7 @@
JavaScript parser. JavaScript functions and object constructors
are not supported. Object field names must be quoted strings; they
may not be bare symbols.",
- :see-also ["http://www.json.org", "JSON Home Page"]}
+ :see-also [["http://www.json.org", "JSON Home Page"]]}
clojure.contrib.json.read
(:import (java.io PushbackReader StringReader EOFException))
(:use [clojure.contrib.test-is :only (deftest- is)]))
diff --git a/src/clojure/contrib/json/write.clj b/src/clojure/contrib/json/write.clj
index 2d149021..5b4731e5 100644
--- a/src/clojure/contrib/json/write.clj
+++ b/src/clojure/contrib/json/write.clj
@@ -20,7 +20,7 @@
(ns
#^{:author "Stuart Sierra",
:doc "JavaScript Object Notation (JSON) generator",
- :see-also ["http://www.json.org", "JSON Home Page"]}
+ :see-also [["http://www.json.org", "JSON Home Page"]]}
clojure.contrib.json.write
(:use [clojure.contrib.test-is :only (deftest- is)]))