[Python-checkins] r70768 - python/trunk/Doc/library/json.rst

andrew.kuchling python-checkins at python.org
Tue Mar 31 00:29:15 CEST 2009


Author: andrew.kuchling
Date: Tue Mar 31 00:29:15 2009
New Revision: 70768

Log:
Typo fixes

Modified:
   python/trunk/Doc/library/json.rst

Modified: python/trunk/Doc/library/json.rst
==============================================================================
--- python/trunk/Doc/library/json.rst	(original)
+++ python/trunk/Doc/library/json.rst	Tue Mar 31 00:29:15 2009
@@ -178,12 +178,12 @@
    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,


More information about the Python-checkins mailing list