diff options
author | Jürgen Gmach <juergen.gmach@googlemail.com> | 2021-05-28 20:54:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 20:54:25 (GMT) |
commit | 2138b2edaf5acb3b9c162a9ba620923e286239a8 (patch) | |
tree | c28af03f6d11fd3c3d66fd0eb940fc7b048da9a7 /Lib/imaplib.py | |
parent | acac6c71ff370413374c6aca1df808c426e8a30c (diff) | |
download | cpython-2138b2edaf5acb3b9c162a9ba620923e286239a8.zip cpython-2138b2edaf5acb3b9c162a9ba620923e286239a8.tar.gz cpython-2138b2edaf5acb3b9c162a9ba620923e286239a8.tar.bz2 |
bpo-44045: fix spelling of uppercase vs upper-case (GH-25985)
And also of lowercase vs lower-case.
The `-` notation should only be used for adjectives.
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r-- | Lib/imaplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 7318439..fa4c0f8 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -145,7 +145,7 @@ class IMAP4: the global default socket timeout is used All IMAP4rev1 commands are supported by methods of the same - name (in lower-case). + name (in lowercase). All arguments to commands are converted to strings, except for AUTHENTICATE, and the last argument to APPEND which is passed as |