summaryrefslogtreecommitdiff
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
parent645e260062b7573bb5485ed421af1c36ef4723ff (diff)
downloadpycparser-4961d1bc19c33deeda3755699575a5b7add06ad9.tar.gz
fix example typo
-rw-r--r--CHANGES2
-rw-r--r--examples/explore_ast.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index d9bb343..353f5f2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,7 +7,7 @@
- pycparser now carries its PLY dependency along. The pycparser/ply directory
contains the source of PLY for the currently supported version. This makes
distribution and testing easier.
- - Issue #87: improve location reporting for parse errors.
+ - Issues #86 and #87: improve location reporting for parse errors.
+ Version 2.08 (10.08.2012)
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