diff options
author | Kyle Stanley <aeros167@gmail.com> | 2019-07-22 18:14:07 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-07-22 18:14:07 (GMT) |
commit | 83cec020ba177fa27727330ba4ccf60eebc22a54 (patch) | |
tree | 926a6a42d1464f8040bbf044b49918cdef1277c0 /Lib/email/headerregistry.py | |
parent | 5d3d0f382f6663fcb8b426a62ef3a4cbd9a938d6 (diff) | |
download | cpython-83cec020ba177fa27727330ba4ccf60eebc22a54.zip cpython-83cec020ba177fa27727330ba4ccf60eebc22a54.tar.gz cpython-83cec020ba177fa27727330ba4ccf60eebc22a54.tar.bz2 |
[3.7] Fix typos in docs, comments and test assert messages (GH-14872). (#14901)
(cherry picked from commit 96e12d5f4f3c5a20986566038ee763dff3c228a1)
Co-authored-by: Min ho Kim <minho42@gmail.com>
Diffstat (limited to 'Lib/email/headerregistry.py')
-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 0065204..0218cbf 100644 --- a/Lib/email/headerregistry.py +++ b/Lib/email/headerregistry.py @@ -245,7 +245,7 @@ class BaseHeader(str): the header name and the ': ' separator. """ - # At some point we need to put fws here iif it was in the source. + # At some point we need to put fws here if it was in the source. header = parser.Header([ parser.HeaderLabel([ parser.ValueTerminal(self.name, 'header-name'), |