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 /Doc/library/builtins.rst | |
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 'Doc/library/builtins.rst')
-rw-r--r-- | Doc/library/builtins.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/builtins.rst b/Doc/library/builtins.rst index 8fb1fef..7e4f8fe 100644 --- a/Doc/library/builtins.rst +++ b/Doc/library/builtins.rst @@ -25,7 +25,7 @@ that wants to implement an :func:`open` function that wraps the built-in return UpperCaser(f) class UpperCaser: - '''Wrapper around a file that converts output to upper-case.''' + '''Wrapper around a file that converts output to uppercase.''' def __init__(self, f): self._f = f |