summaryrefslogtreecommitdiff
path: root/test/input/func_w0223.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 /test/input/func_w0223.py
parent7786080e07a3e75d72304dcd316e6d740b8b7386 (diff)
downloadpylint-d38aa3a8e1cae2a9ca5cd0334bd03ae4e099fa29.tar.gz
fix spelling mistake pointed out by skip@pobox.com
Diffstat (limited to 'test/input/func_w0223.py')
-rw-r--r--test/input/func_w0223.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/input/func_w0223.py b/test/input/func_w0223.py
index 3696862..e1e81bf 100644
--- a/test/input/func_w0223.py
+++ b/test/input/func_w0223.py
@@ -8,12 +8,12 @@ class Abstract:
"""abstract class
"""
def aaaa(self):
- """should be overriden in concrete class"""
+ """should be overridden in concrete class"""
raise NotImplementedError()
def bbbb(self):
- """should be overriden in concrete class"""
+ """should be overridden in concrete class"""
raise NotImplementedError()
def __init__(self):