summaryrefslogtreecommitdiff
path: root/Lib/tokenize.py
diff options
context:
space:
mode:
authorpenguindustin <penguindustin@gmail.com>2019-05-06 14:57:17 -0400
committerStéphane Wirtel <stephane@wirtel.be>2019-05-06 14:57:17 -0400
commit964663089547ca110199e23867b46b07ff4be88c (patch)
tree7936a6abc5e5c20058b4f51dbd8379eb4658e42d /Lib/tokenize.py
parent3921b1cc34c2fc8b8b480c19a95ec306de710fdd (diff)
downloadcpython-git-964663089547ca110199e23867b46b07ff4be88c.tar.gz
bpo-36766: Typos in docs and code comments (GH-13116)
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r--Lib/tokenize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py
index cf1ecc99a9..0f9d5dd554 100644
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -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']