From 9aad531bdfdd16580f3835f88893b70cb6707ac5 Mon Sep 17 00:00:00 2001 From: zhezhaoa <1152543959@qq.com> Date: Sat, 7 Nov 2020 21:57:43 +0800 Subject: [PATCH] A spelling error is fixed A spelling error is fixed --- tokenization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokenization.py b/tokenization.py index 0ee135953..75cc61ed9 100644 --- a/tokenization.py +++ b/tokenization.py @@ -361,7 +361,7 @@ def tokenize(self, text): def _is_whitespace(char): """Checks whether `chars` is a whitespace character.""" - # \t, \n, and \r are technically contorl characters but we treat them + # \t, \n, and \r are technically control characters but we treat them # as whitespace since they are generally considered as such. if char == " " or char == "\t" or char == "\n" or char == "\r": return True