mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
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.
This commit is contained in:
parent
acac6c71ff
commit
2138b2edaf
5 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue