diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-06-03 12:02:23 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-06-03 12:02:23 +0100 |
commit | 119c8c6a70a166283b2f0cd5cfa18b45d8592ab9 (patch) | |
tree | d591f156ce4d351a8afc2316a5f59ecb259c7733 /astroid/mixins.py | |
parent | 788bb41c9eb1078237724933e3d33ca98419c41f (diff) | |
parent | 96be1bbc7ede4ce7c221988a3303a5d7dd46b13a (diff) | |
download | astroid-git-119c8c6a70a166283b2f0cd5cfa18b45d8592ab9.tar.gz |
Merge pull request #339 from jwilk/spelling
Fix typos
Diffstat (limited to 'astroid/mixins.py')
-rw-r--r-- | astroid/mixins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/mixins.py b/astroid/mixins.py index 2241fb44..1d7d9ee4 100644 --- a/astroid/mixins.py +++ b/astroid/mixins.py @@ -34,7 +34,7 @@ class FilterStmtsMixin(object): """Mixin for statement filtering and assignment type""" def _get_filtered_stmts(self, _, node, _stmts, mystmt): - """method used in _filter_stmts to get statemtents and trigger break""" + """method used in _filter_stmts to get statements and trigger break""" if self.statement() is mystmt: # original node's statement is the assignment, only keep # current node (gen exp, list comp) |