summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2009-03-30 22:29:15 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2009-03-30 22:29:15 (GMT)
commit19672006a7a80dd5d86a1059cae666e855d86feb (patch)
tree4c9ec97a4de4c9381f5dc54f66dcd6398494ac29 /Doc
parentd59efbccf1afef655d2525ffd9239a62ef26a33a (diff)
downloadcpython-19672006a7a80dd5d86a1059cae666e855d86feb.zip
cpython-19672006a7a80dd5d86a1059cae666e855d86feb.tar.gz
cpython-19672006a7a80dd5d86a1059cae666e855d86feb.tar.bz2
Typo fixes
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/json.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst
index 9eaa3b3..950e433 100644
--- a/Doc/library/json.rst
+++ b/Doc/library/json.rst
@@ -178,12 +178,12 @@ Basic Usage
to a :class:`unicode` object and passed to :func:`loads`.
*object_hook* is an optional function that will be called with the result of
- any object literal decode (a :class:`dict`). The return value of
+ any object literal decoded (a :class:`dict`). The return value of
*object_hook* will be used instead of the :class:`dict`. This feature can be used
to implement custom decoders (e.g. JSON-RPC class hinting).
*object_pairs_hook* is an optional function that will be called with the
- result of any object literal decode with an ordered list of pairs. The
+ result of any object literal decoded with an ordered list of pairs. The
return value of *object_pairs_hook* will be used instead of the
:class:`dict`. This feature can be used to implement custom decoders that
rely on the order that the key and value pairs are decoded (for example,