summaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils.py b/utils.py
index 664cb6d8..19676158 100644
--- a/utils.py
+++ b/utils.py
@@ -43,7 +43,7 @@ def extend_class(original, addons):
class ASTVisitor(object):
"""Abstract Base Class for Python AST Visitors.
- Visitors inheritating from ASTVisitors could visit
+ Visitors inheriting from ASTVisitors could visit
compiler.ast, _ast or astng trees.
Not all methods will have to be implemented;
@@ -327,7 +327,7 @@ class ASTWalker:
class LocalsVisitor(ASTWalker):
- """visit a project by traversing the locals dictionnary"""
+ """visit a project by traversing the locals dictionary"""
def __init__(self):
ASTWalker.__init__(self, self)
self._visited = {}