[Python-checkins] r86887 - python/branches/py3k/Doc/library/pickle.rst

georg.brandl python-checkins at python.org
Tue Nov 30 15:57:54 CET 2010


Author: georg.brandl
Date: Tue Nov 30 15:57:54 2010
New Revision: 86887

Log:
Fix typo.

Modified:
   python/branches/py3k/Doc/library/pickle.rst

Modified: python/branches/py3k/Doc/library/pickle.rst
==============================================================================
--- python/branches/py3k/Doc/library/pickle.rst	(original)
+++ python/branches/py3k/Doc/library/pickle.rst	Tue Nov 30 15:57:54 2010
@@ -42,7 +42,7 @@
 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.


More information about the Python-checkins mailing list