From: Georg Brandl Date: Tue, 30 Nov 2010 14:57:54 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v3.2b1~164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5aa580f27905d6e844e0ba6cf72b04f2d6d10987;p=python Fix typo. --- diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 1b533f3d1b..73f0611a16 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -42,7 +42,7 @@ general :mod:`pickle` should always be the preferred way to serialize Python objects. :mod:`marshal` exists primarily to support Python's :file:`.pyc` files. -The :mod:`pickle` module differs from :mod:`marshal` several significant ways: +The :mod:`pickle` module differs from :mod:`marshal` in several significant ways: * The :mod:`pickle` module keeps track of the objects it has already serialized, so that later references to the same object won't be serialized again.