]> granicus.if.org Git - python/commitdiff
Comment typo fixes
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 11 Aug 2003 16:20:39 +0000 (16:20 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 11 Aug 2003 16:20:39 +0000 (16:20 +0000)
Lib/compiler/ast.py
Lib/compiler/visitor.py

index 8d69da6d9907f55e8cefd7031e0a03a67aa0dc8d..a10225bbbcf01ae20113bc0b09c42e24fda9b7d3 100644 (file)
@@ -283,7 +283,7 @@ class Module(Node):
         return "Module(%s, %s)" % (repr(self.doc), repr(self.node))
 
 class Expression(Node):
-    # Expression is an artifical node class to support "eval"
+    # Expression is an artificial node class to support "eval"
     nodes["expression"] = "Expression"
     def __init__(self, node):
         self.node = node
index 52ea90d3bd19a21f2c6c2e83baa82d23b3413783..9e39d3664937fbb3227e78deff752f3017be4fd1 100644 (file)
@@ -66,7 +66,7 @@ class ExampleASTVisitor(ASTVisitor):
     """Prints examples of the nodes that aren't visited
 
     This visitor-driver is only useful for development, when it's
-    helpful to develop a visitor incremently, and get feedback on what
+    helpful to develop a visitor incrementally, and get feedback on what
     you still have to do.
     """
     examples = {}