summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-09 00:39:30 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-09 00:39:30 (GMT)
commitb6f1d6419d35357afd3644c36ac59e4f318036d1 (patch)
tree9bc93b442bf541b9ee50a764c2a5ccff92d68689 /Doc/library
parent355a9876e572992239987e7b5568b84fba4a0084 (diff)
parent9cbcc2f1c05bbb5e58b9219d0006b80b408c28f1 (diff)
downloadcpython-b6f1d6419d35357afd3644c36ac59e4f318036d1.zip
cpython-b6f1d6419d35357afd3644c36ac59e4f318036d1.tar.gz
cpython-b6f1d6419d35357afd3644c36ac59e4f318036d1.tar.bz2
Issue #17332: fix json doc typo /convered/converted/ found by Ernie Hershey.
Diffstat (limited to 'Doc/library')
-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.