Fixed typo in docstring (#4326)

This commit is contained in:
Oliver Dewitz 2021-04-12 13:40:10 +02:00 committed by GitHub
parent 252df0a149
commit cbe4d5f952
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
def lower(word: str) -> str: def lower(word: str) -> str:
""" """
Will convert the entire string to lowecase letters Will convert the entire string to lowercase letters
>>> lower("wow") >>> lower("wow")
'wow' 'wow'