[Python-checkins] cpython (merge 3.4 -> default): Merge #21300: fix typo

r.david.murray python-checkins at python.org
Thu May 8 16:06:35 CEST 2014


http://hg.python.org/cpython/rev/232938736a31
changeset:   90590:232938736a31
parent:      90588:219502cf57eb
parent:      90589:9e55089aa505
user:        R David Murray <rdmurray at bitdance.com>
date:        Thu May 08 10:06:17 2014 -0400
summary:
  Merge #21300: fix typo

files:
  Doc/library/email.message.rst |  2 +-
  Doc/library/email.parser.rst  |  6 +++---
  2 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst
--- a/Doc/library/email.message.rst
+++ b/Doc/library/email.message.rst
@@ -34,7 +34,7 @@
 .. class:: Message(policy=compat32)
 
    If *policy* is specified (it must be an instance of a :mod:`~email.policy`
-   class) use the rules it specifies to udpate and serialize the representation
+   class) use the rules it specifies to update and serialize the representation
    of the message.  If *policy* is not set, use the :class:`compat32
    <email.policy.Compat32>` policy, which maintains backward compatibility with
    the Python 3.2 version of the email package.  For more information see the
diff --git a/Doc/library/email.parser.rst b/Doc/library/email.parser.rst
--- a/Doc/library/email.parser.rst
+++ b/Doc/library/email.parser.rst
@@ -67,7 +67,7 @@
    defaults to the :class:`email.message.Message` class.
 
    If *policy* is specified (it must be an instance of a :mod:`~email.policy`
-   class) use the rules it specifies to udpate the representation of the
+   class) use the rules it specifies to update the representation of the
    message.  If *policy* is not set, use the :class:`compat32
    <email.policy.Compat32>` policy, which maintains backward compatibility with
    the Python 3.2 version of the email package.  For more information see the
@@ -125,7 +125,7 @@
    be called without arguments.
 
    If *policy* is specified (it must be an instance of a :mod:`~email.policy`
-   class) use the rules it specifies to udpate the representation of the
+   class) use the rules it specifies to update the representation of the
    message.  If *policy* is not set, use the :class:`compat32
    <email.policy.Compat32>` policy, which maintains backward compatibility with
    the Python 3.2 version of the email package.  For more information see the
@@ -172,7 +172,7 @@
    the :class:`Parser` constructor.
 
    If *policy* is specified (it must be an instance of a :mod:`~email.policy`
-   class) use the rules it specifies to udpate the representation of the
+   class) use the rules it specifies to update the representation of the
    message.  If *policy* is not set, use the :class:`compat32
    <email.policy.Compat32>` policy, which maintains backward compatibility with
    the Python 3.2 version of the email package.  For more information see the

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list