summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-09 00:35:15 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-09 00:35:15 (GMT)
commit9cbcc2f1c05bbb5e58b9219d0006b80b408c28f1 (patch)
treeaf701d7a47aff9b26b7d7e38cafd59df465b9890 /Doc
parent832d99bdbbf321f1cff4aa2bb8d53b925ca7ab0e (diff)
downloadcpython-9cbcc2f1c05bbb5e58b9219d0006b80b408c28f1.zip
cpython-9cbcc2f1c05bbb5e58b9219d0006b80b408c28f1.tar.gz
cpython-9cbcc2f1c05bbb5e58b9219d0006b80b408c28f1.tar.bz2
Issue #17332: fix json doc typo /convered/converted/ found by Ernie Hershey.
Diffstat (limited to 'Doc')
-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 f98e0ef..7b69c24 100644
--- a/Doc/library/json.rst
+++ b/Doc/library/json.rst
@@ -195,7 +195,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.