diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-05-08 14:06:17 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-05-08 14:06:17 (GMT) |
commit | ef8f7792f3763b21b452c0859660b24473e7a345 (patch) | |
tree | d07e9bbbe3058c7a7701a3381797213f7761ab4a /Doc | |
parent | f3d90fb46b29613749921be3f8797e973ae3f627 (diff) | |
parent | a83ade1d60a18d7cf2f96f9e059947a770c491ee (diff) | |
download | cpython-ef8f7792f3763b21b452c0859660b24473e7a345.zip cpython-ef8f7792f3763b21b452c0859660b24473e7a345.tar.gz cpython-ef8f7792f3763b21b452c0859660b24473e7a345.tar.bz2 |
Merge #21300: fix typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/email.message.rst | 2 | ||||
-rw-r--r-- | 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 index 58f708c..8573e85 100644 --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -34,7 +34,7 @@ Here are the methods of the :class:`Message` class: .. 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 index 90d2c54..9f137cd 100644 --- a/Doc/library/email.parser.rst +++ b/Doc/library/email.parser.rst @@ -67,7 +67,7 @@ Here is the API for the :class:`FeedParser`: 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 @@ have the same API as the :class:`Parser` and :class:`BytesParser` classes. 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 @@ have the same API as the :class:`Parser` and :class:`BytesParser` classes. 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 |