summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ply/__init__.py2
-rw-r--r--ply/ygen.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/ply/__init__.py b/ply/__init__.py
index 6e53cdd..7e604ea 100644
--- a/ply/__init__.py
+++ b/ply/__init__.py
@@ -1,5 +1,5 @@
# PLY package
# Author: David Beazley (dave@dabeaz.com)
-__version__ = '3.9'
+__version__ = '3.10'
__all__ = ['lex','yacc']
diff --git a/ply/ygen.py b/ply/ygen.py
index acf5ca1..62a2c35 100644
--- a/ply/ygen.py
+++ b/ply/ygen.py
@@ -3,7 +3,7 @@
# This is a support program that auto-generates different versions of the YACC parsing
# function with different features removed for the purposes of performance.
#
-# Users should edit the method LParser.parsedebug() in yacc.py. The source code
+# Users should edit the method LRParser.parsedebug() in yacc.py. The source code
# for that method is then used to create the other methods. See the comments in
# yacc.py for further details.