diff options
author | Georg Brandl <georg@python.org> | 2010-05-10 21:02:51 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-05-10 21:02:51 +0000 |
commit | c63019578497e8d024c25c766f1cb668af6c9992 (patch) | |
tree | 05ee50446da40aa956188a653e6714aa04329896 /Doc/library | |
parent | 72b19772211bf2816ec9d2c24d169180a70246e7 (diff) | |
download | cpython-git-c63019578497e8d024c25c766f1cb668af6c9992.tar.gz |
#8642: fix wrong function name.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/json.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 39ca233353..095119c0c9 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -223,7 +223,7 @@ Basic Usage specified. Encodings that are not ASCII based (such as UCS-2) are not allowed and should be decoded to :class:`unicode` first. - The other arguments have the same meaning as in :func:`dump`. + The other arguments have the same meaning as in :func:`load`. Encoders and decoders |