summaryrefslogtreecommitdiff
path: root/checkers/utils.py
diff options
context:
space:
mode:
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>2006-05-27 20:55:37 +0200
committerAlexandre Fayolle <alexandre.fayolle@logilab.fr>2006-05-27 20:55:37 +0200
commitd38aa3a8e1cae2a9ca5cd0334bd03ae4e099fa29 (patch)
treede091ac8fb55549ff527a4b56b9b6655c8e4d7a2 /checkers/utils.py
parent7786080e07a3e75d72304dcd316e6d740b8b7386 (diff)
downloadpylint-d38aa3a8e1cae2a9ca5cd0334bd03ae4e099fa29.tar.gz
fix spelling mistake pointed out by skip@pobox.com
Diffstat (limited to 'checkers/utils.py')
-rw-r--r--checkers/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/utils.py b/checkers/utils.py
index 8c6612a..ba8bd41 100644
--- a/checkers/utils.py
+++ b/checkers/utils.py
@@ -169,7 +169,7 @@ def overrides_an_abstract_method(class_node, name):
return False
def overrides_a_method(class_node, name):
- """return True if <name> is a method overriden from an ancestor"""
+ """return True if <name> is a method overridden from an ancestor"""
for ancestor in class_node.ancestors():
if name in ancestor and isinstance(ancestor[name], astng.Function):
return True