[Python-checkins] cpython (3.5): Fix typos

raymond.hettinger python-checkins at python.org
Tue Aug 30 16:44:12 EDT 2016


https://hg.python.org/cpython/rev/8d9d90ef80b0
changeset:   102955:8d9d90ef80b0
branch:      3.5
parent:      102950:53f2cde033ac
user:        Raymond Hettinger <python at rcn.com>
date:        Tue Aug 30 13:25:06 2016 -0700
summary:
  Fix typos

files:
  Doc/library/smtplib.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/smtplib.rst b/Doc/library/smtplib.rst
--- a/Doc/library/smtplib.rst
+++ b/Doc/library/smtplib.rst
@@ -439,7 +439,7 @@
    and the accompanying error message sent by the server.
 
    If ``SMTPUTF8`` is included in *mail_options*, and the server supports it,
-   *from_addr* and *to_addr* may contain non-ASCII characters.
+   *from_addr* and *to_addrs* may contain non-ASCII characters.
 
    This method may raise the following exceptions:
 
@@ -486,7 +486,7 @@
    those arguments with addresses extracted from the headers of *msg* as
    specified in :rfc:`5322`\: *from_addr* is set to the :mailheader:`Sender`
    field if it is present, and otherwise to the :mailheader:`From` field.
-   *to_adresses* combines the values (if any) of the :mailheader:`To`,
+   *to_addrs* combines the values (if any) of the :mailheader:`To`,
    :mailheader:`Cc`, and :mailheader:`Bcc` fields from *msg*.  If exactly one
    set of :mailheader:`Resent-*` headers appear in the message, the regular
    headers are ignored and the :mailheader:`Resent-*` headers are used instead.

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


More information about the Python-checkins mailing list