summaryrefslogtreecommitdiff
path: root/pylint/checkers/spelling.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2017-07-23 14:43:39 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2017-07-23 14:43:39 +0200
commit1a0d4be29c5692dc70de236be12561815cc42c99 (patch)
tree08845cfd0311b94bfd44870e4a3a9224439813cd /pylint/checkers/spelling.py
parent28de6a0c279352626d1be6c62e79d60635386c33 (diff)
downloadpylint-git-1a0d4be29c5692dc70de236be12561815cc42c99.tar.gz
Typo
Diffstat (limited to 'pylint/checkers/spelling.py')
-rw-r--r--pylint/checkers/spelling.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/spelling.py b/pylint/checkers/spelling.py
index ae779a2a0..aae219eeb 100644
--- a/pylint/checkers/spelling.py
+++ b/pylint/checkers/spelling.py
@@ -84,7 +84,7 @@ class CamelCasedWord(Filter):
return bool(self._pattern.match(word))
-class SphinxDicrectives(Filter):
+class SphinxDirectives(Filter):
r"""Filter skipping over Sphinx Directives.
This filter skips any words matching the following regular expression:
@@ -218,7 +218,7 @@ class SpellingChecker(BaseTokenChecker):
WordsWithDigigtsFilter,
WordsWithUnderscores,
CamelCasedWord,
- SphinxDicrectives])
+ SphinxDirectives])
self.initialized = True
def close(self):