summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2012-12-25 06:50:59 -0800
committerEli Bendersky <eliben@gmail.com>2012-12-25 06:50:59 -0800
commit4961d1bc19c33deeda3755699575a5b7add06ad9 (patch)
treecfa5e35570924213ae43218085222dc9fe6b667f /examples
parent645e260062b7573bb5485ed421af1c36ef4723ff (diff)
downloadpycparser-4961d1bc19c33deeda3755699575a5b7add06ad9.tar.gz
fix example typo
Diffstat (limited to 'examples')
-rw-r--r--examples/explore_ast.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/explore_ast.py b/examples/explore_ast.py
index 392e78a..f6be329 100644
--- a/examples/explore_ast.py
+++ b/examples/explore_ast.py
@@ -150,7 +150,7 @@ while_cond = while_stmt.cond
#~ while_cond.right.show()
#
-# That's if for the example. I hope you now see how easy it is to
+# That's it for the example. I hope you now see how easy it is to
# explore the AST created by pycparser. Although on the surface it
# is quite complex and has a lot of node types, this is the
# inherent complexity of the C language every parser/compiler