diff options
author | Leo Arias <leo.arias@canonical.com> | 2018-02-03 18:36:10 -0600 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-02-03 19:36:10 -0500 |
commit | c3d9508ff22ece9a96892b628dd5813e2fb0cd80 (patch) | |
tree | 56271a3b3e3681e47e97ec2dca926bc9cb891a5e /Lib/email | |
parent | bpo-32739: Show default value for rotate() (GH-5485) (diff) | |
download | cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.gz cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.bz2 cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.zip |
bpo-32746: Fix multiple typos (GH-5144)
Fix typos found by codespell in docs, docstrings, and comments.
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/_header_value_parser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/email/_header_value_parser.py b/Lib/email/_header_value_parser.py index d2d1f5cb5f3..d8becee1989 100644 --- a/Lib/email/_header_value_parser.py +++ b/Lib/email/_header_value_parser.py @@ -2745,8 +2745,8 @@ def _fold_mime_parameters(part, lines, maxlen, encoding): Using the decoded list of parameters and values, format them according to the RFC rules, including using RFC2231 encoding if the value cannot be - expressed in 'encoding' and/or the paramter+value is too long to fit within - 'maxlen'. + expressed in 'encoding' and/or the parameter+value is too long to fit + within 'maxlen'. """ # Special case for RFC2231 encoding: start from decoded values and use |