diff options
author | Min ho Kim <minho42@gmail.com> | 2019-07-22 06:12:33 +1000 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-07-21 16:12:33 -0400 |
commit | 96e12d5f4f3c5a20986566038ee763dff3c228a1 (patch) | |
tree | ae4039f978a155a295903e084f4531d42b8cf7a8 /Lib/email/headerregistry.py | |
parent | Fix typo found by Min ho Kim (#14879) (diff) | |
download | cpython-96e12d5f4f3c5a20986566038ee763dff3c228a1.tar.gz cpython-96e12d5f4f3c5a20986566038ee763dff3c228a1.tar.bz2 cpython-96e12d5f4f3c5a20986566038ee763dff3c228a1.zip |
Fix typos in docs, comments and test assert messages (#14872)
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 452c6ad5084..8d1a2025271 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'), |