From 340d2690b3db594edfa1eb27cda2afe957235ba6 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 16 Apr 2011 16:54:15 +0200 Subject: [PATCH] Small wording fix. --- Doc/library/json.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 0b42012c9ac..6bb48e81ef5 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -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)