summaryrefslogtreecommitdiff
path: root/pylint/checkers/classes.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2016-07-23 22:42:47 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2016-07-23 22:42:47 +0300
commit6ece3046d3fe08f357796f869a830b976e5cc5cc (patch)
treeb60b0271b6a20e5b5328cf1607720dc7c96477cb /pylint/checkers/classes.py
parentf214ab1299948f3e021d6bce9b78dff807945775 (diff)
downloadpylint-git-6ece3046d3fe08f357796f869a830b976e5cc5cc.tar.gz
Grammar fix
Diffstat (limited to 'pylint/checkers/classes.py')
-rw-r--r--pylint/checkers/classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/classes.py b/pylint/checkers/classes.py
index 43b05aee1..da2ce839b 100644
--- a/pylint/checkers/classes.py
+++ b/pylint/checkers/classes.py
@@ -1222,7 +1222,7 @@ class SpecialMethodsChecker(BaseChecker):
# This can support a variable number of parameters.
return
if not len(node.args.args) and not node.args.vararg:
- # Method has no parameter, will be catched
+ # Method has no parameter, will be caught
# by no-method-argument.
return