diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-06 23:57:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 23:57:10 (GMT) |
commit | 5f401f10400123afa9171548c432ea3fc37c0736 (patch) | |
tree | ff6d1e214f02b837c06e1bdf7fcab735e7af612c /Parser | |
parent | db72e58ea5940c3942ede9f70cb897510b52fc36 (diff) | |
download | cpython-5f401f10400123afa9171548c432ea3fc37c0736.zip cpython-5f401f10400123afa9171548c432ea3fc37c0736.tar.gz cpython-5f401f10400123afa9171548c432ea3fc37c0736.tar.bz2 |
Fix typos in the Objects directory (GH-28766)
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/tokenizer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h index a40f7d9..677f9db 100644 --- a/Parser/tokenizer.h +++ b/Parser/tokenizer.h @@ -23,7 +23,7 @@ enum interactive_underflow_t { /* Normal mode of operation: return a new token when asked in interactie mode */ IUNDERFLOW_NORMAL, /* Forcefully return ENDMARKER when asked for a new token in interactive mode. This - * can be used to prevent the tokenizer to promt the user for new tokens */ + * can be used to prevent the tokenizer to prompt the user for new tokens */ IUNDERFLOW_STOP, }; |