diff --git a/Lib/email/Message.py b/Lib/email/Message.py index 655e04fac8f..91931a11e2d 100644 --- a/Lib/email/Message.py +++ b/Lib/email/Message.py @@ -192,7 +192,7 @@ def values(self): These will be sorted in the order they appeared in the original message, and may contain duplicates. Any fields deleted and - re-inserted are alwyas appended to the header list. + re-inserted are always appended to the header list. """ return [v for k, v in self._headers] @@ -201,7 +201,7 @@ def items(self): These will be sorted in the order they appeared in the original message, and may contain duplicates. Any fields deleted and - re-inserted are alwyas appended to the header list. + re-inserted are always appended to the header list. """ return self._headers[:]