bpo-36766: Typos in docs and code comments (GH-13116)

This commit is contained in:
penguindustin 2019-05-06 14:57:17 -04:00 committed by Stéphane Wirtel
parent 3921b1cc34
commit 9646630895
22 changed files with 22 additions and 22 deletions

View file

@ -82,7 +82,7 @@ Number = group(Imagnumber, Floatnumber, Intnumber)
# Return the empty string, plus all of the valid string prefixes.
def _all_string_prefixes():
# The valid string prefixes. Only contain the lower case versions,
# and don't contain any permuations (include 'fr', but not
# and don't contain any permutations (include 'fr', but not
# 'rf'). The various permutations will be generated.
_valid_string_prefixes = ['b', 'r', 'u', 'f', 'br', 'fr']
# if we add binary f-strings, add: ['fb', 'fbr']