diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-02-10 01:17:51 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-02-10 01:17:51 (GMT) |
commit | 96a4f07107476c0038ff1302b7ef779cab07e8ae (patch) | |
tree | 209d9fe2647330179040ef4b57dc2c3617853333 /Lib/email | |
parent | 763f9f0d89548e02c2efcd843655944584d6d33f (diff) | |
download | cpython-96a4f07107476c0038ff1302b7ef779cab07e8ae.zip cpython-96a4f07107476c0038ff1302b7ef779cab07e8ae.tar.gz cpython-96a4f07107476c0038ff1302b7ef779cab07e8ae.tar.bz2 |
Issues #26310, #26311: Fix typos in the documentation and code comments
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/headerregistry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/headerregistry.py b/Lib/email/headerregistry.py index 468ca9e..4e142ee 100644 --- a/Lib/email/headerregistry.py +++ b/Lib/email/headerregistry.py @@ -16,7 +16,7 @@ from email import _header_value_parser as parser class Address: def __init__(self, display_name='', username='', domain='', addr_spec=None): - """Create an object represeting a full email address. + """Create an object representing a full email address. An address can have a 'display_name', a 'username', and a 'domain'. In addition to specifying the username and domain separately, they may be |