]> granicus.if.org Git - python/commitdiff
Small wording fix.
authorGeorg Brandl <georg@python.org>
Sat, 16 Apr 2011 14:54:15 +0000 (16:54 +0200)
committerGeorg Brandl <georg@python.org>
Sat, 16 Apr 2011 14:54:15 +0000 (16:54 +0200)
Doc/library/json.rst

index 0b42012c9acfd65ed8366f1369c3b36e350c3857..6bb48e81ef511488802f6d0d8951b1e01c7ad2cb 100644 (file)
@@ -158,9 +158,10 @@ Basic Usage
 
    .. note::
 
-      Unlike :mod:`pickle` and :mod:`marshal`, JSON is not a framed protocol so
-      trying to serialize more objects with repeated calls to :func:`dump` and
-      the same *fp* will result in an invalid JSON file.
+      Unlike :mod:`pickle` and :mod:`marshal`, JSON is not a framed protocol,
+      so trying to serialize multiple objects with repeated calls to
+      :func:`dump` using the same *fp* will result in an invalid JSON file.
+
 
 .. function:: load(fp, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw)