summaryrefslogtreecommitdiff
path: root/pylint/test
diff options
context:
space:
mode:
authorLaura M?dioni <laura.medioni@logilab.fr>2015-10-29 14:43:10 +0100
committerLaura M?dioni <laura.medioni@logilab.fr>2015-10-29 14:43:10 +0100
commitdd419712a064c2ec25839492e8c3b2acccbd76a3 (patch)
tree7e96d0d18a18823eb34ec0776bfee67c09793758 /pylint/test
parent171326299f836782edd6167ac15de4a738dd53f8 (diff)
downloadpylint-dd419712a064c2ec25839492e8c3b2acccbd76a3.tar.gz
improve style and fix typos regarding no_class/staticmethod_decorator
Diffstat (limited to 'pylint/test')
-rw-r--r--pylint/test/functional/no_classmethod_decorator.py2
-rw-r--r--pylint/test/functional/no_staticmethod_decorator.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pylint/test/functional/no_classmethod_decorator.py b/pylint/test/functional/no_classmethod_decorator.py
index 205594d..f44dca5 100644
--- a/pylint/test/functional/no_classmethod_decorator.py
+++ b/pylint/test/functional/no_classmethod_decorator.py
@@ -1,4 +1,4 @@
-"""Checks classes methods are declared with a decorator if whithin the class
+"""Checks class methods are declared with a decorator if within the class
scope and if classmethod's argument is a member of the class
"""
diff --git a/pylint/test/functional/no_staticmethod_decorator.py b/pylint/test/functional/no_staticmethod_decorator.py
index 636b2a5..9e26454 100644
--- a/pylint/test/functional/no_staticmethod_decorator.py
+++ b/pylint/test/functional/no_staticmethod_decorator.py
@@ -1,4 +1,4 @@
-"""Checks static methods are declared with a decorator if whithin the class
+"""Checks static methods are declared with a decorator if within the class
scope and if static method's argument is a member of the class
"""