diff options
author | Ville Skyttä <ville.skytta@iki.fi> | 2018-04-20 20:08:45 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2018-04-20 20:08:45 (GMT) |
commit | 61f82e0e337f971da57f8f513abfe693edf95aa5 (patch) | |
tree | d783b7677df1f57618381c0b7c925a990a115444 /Doc/library | |
parent | 0399cf9b5e370516e3d0aed6a63ff74aff5eadb5 (diff) | |
download | cpython-61f82e0e337f971da57f8f513abfe693edf95aa5.zip cpython-61f82e0e337f971da57f8f513abfe693edf95aa5.tar.gz cpython-61f82e0e337f971da57f8f513abfe693edf95aa5.tar.bz2 |
Spelling fixes to docs, docstrings, and comments (GH-6374)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/email.generator.rst | 2 | ||||
-rw-r--r-- | Doc/library/test.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/email.generator.rst b/Doc/library/email.generator.rst index cc8e822..2575a51 100644 --- a/Doc/library/email.generator.rst +++ b/Doc/library/email.generator.rst @@ -185,7 +185,7 @@ to be using :class:`BytesGenerator`, and not :class:`Generator`. Convert any bytes with the high bit set as needed using an ASCII-compatible :mailheader:`Content-Transfer-Encoding`. That is, transform parts with non-ASCII :mailheader:`Cotnent-Transfer-Encoding` - (:mailheader:`Content-Transfer-Encoding: 8bit`) to an ASCII compatibile + (:mailheader:`Content-Transfer-Encoding: 8bit`) to an ASCII compatible :mailheader:`Content-Transfer-Encoding`, and encode RFC-invalid non-ASCII bytes in headers using the MIME ``unknown-8bit`` character set, thus rendering them RFC-compliant. diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 7b0971a..aeeed00 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -746,7 +746,7 @@ The :mod:`test.support` module defines the following functions: .. function:: wait_threads_exit(timeout=60.0) - Context manager to wait until all threads created in the ``with`` statment + Context manager to wait until all threads created in the ``with`` statement exit. |