summaryrefslogtreecommitdiffstats
path: root/Doc/library/json.rst
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-09 00:40:17 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-09 00:40:17 (GMT)
commit11c08fd4b4ad84a3d6c4852e15afcbd9290aea99 (patch)
tree28b8d14956f0411ac8fae42a76a918dcc1d79f2a /Doc/library/json.rst
parentd12ff7b754023ea26786dd8de78b56de031f749c (diff)
parentb6f1d6419d35357afd3644c36ac59e4f318036d1 (diff)
downloadcpython-11c08fd4b4ad84a3d6c4852e15afcbd9290aea99.zip
cpython-11c08fd4b4ad84a3d6c4852e15afcbd9290aea99.tar.gz
cpython-11c08fd4b4ad84a3d6c4852e15afcbd9290aea99.tar.bz2
Issue #17332: fix json doc typo /convered/converted/ found by Ernie Hershey.
Diffstat (limited to 'Doc/library/json.rst')
-rw-r--r--Doc/library/json.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst
index 500435c..758ebd4 100644
--- a/Doc/library/json.rst
+++ b/Doc/library/json.rst
@@ -192,7 +192,7 @@ Basic Usage
Keys in key/value pairs of JSON are always of the type :class:`str`. When
a dictionary is converted into JSON, all the keys of the dictionary are
- coerced to strings. As a result of this, if a dictionary is convered
+ coerced to strings. As a result of this, if a dictionary is converted
into JSON and then back into a dictionary, the dictionary may not equal
the original one. That is, ``loads(dumps(x)) != x`` if x has non-string
keys.