summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMatus Valo <matusvalo@gmail.com>2021-02-21 13:56:05 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-21 14:30:26 +0100
commit3509e57e907a21c05e42478a56610955206a86b9 (patch)
tree6cfcdd6fc6dfafb3bdd55e0b768cf720ebc1162f /examples
parent34cce21d29f9692a34fec22a76bee70939e628a5 (diff)
downloadpylint-git-3509e57e907a21c05e42478a56610955206a86b9.tar.gz
DeprecatedMixin: Fix typos and order of base classes in test
Diffstat (limited to 'examples')
-rw-r--r--examples/deprecation_checker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/deprecation_checker.py b/examples/deprecation_checker.py
index 7059c89ab..382f76bb3 100644
--- a/examples/deprecation_checker.py
+++ b/examples/deprecation_checker.py
@@ -37,8 +37,8 @@ class DeprecationChecker(DeprecatedMixin, BaseChecker):
"""Class implementing deprecation checker."""
# DeprecationMixin class is Mixin class implementing logic for searching deprecated methods and functions.
- # The list of deprecated methods/functions is defined by implemeting class via deprecated_methods callback.
- # DeprecatedMixin class is overriding attrigutes of BaseChecker hence must be specified *before* BaseChecker
+ # The list of deprecated methods/functions is defined by implementing class via deprecated_methods callback.
+ # DeprecatedMixin class is overriding attributes of BaseChecker hence must be specified *before* BaseChecker
# in list of base classes.
__implements__ = (IAstroidChecker,)