summaryrefslogtreecommitdiff
path: root/pylint/checkers/format.py
diff options
context:
space:
mode:
authorKian Meng, Ang <kianmeng.ang@gmail.com>2021-12-18 00:23:17 +0800
committerGitHub <noreply@github.com>2021-12-17 17:23:17 +0100
commit566a377154ce68e795aa3f952bb70bd987045228 (patch)
tree9df38c7322c854fbeb44d65762e0dc9e879ac7fd /pylint/checkers/format.py
parentd59c6f77f1ab3d8c62fbdb080d492c4356ccc324 (diff)
downloadpylint-git-566a377154ce68e795aa3f952bb70bd987045228.tar.gz
Fix typos over the whole codebase (#5540)
Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>
Diffstat (limited to 'pylint/checkers/format.py')
-rw-r--r--pylint/checkers/format.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py
index 0c0cb8752..54e571296 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -452,7 +452,7 @@ class FormatChecker(BaseTokenChecker):
elif token[1] == "for":
return
# A generator expression can have an 'else' token in it.
- # We check the rest of the tokens to see if any problems incure after
+ # We check the rest of the tokens to see if any problems incur after
# the 'else'.
elif token[1] == "else":
if "(" in (i.string for i in tokens[i:]):