summaryrefslogtreecommitdiff
path: root/ply/yacc.py
diff options
context:
space:
mode:
Diffstat (limited to 'ply/yacc.py')
-rw-r--r--ply/yacc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ply/yacc.py b/ply/yacc.py
index 4210239..27e15f7 100644
--- a/ply/yacc.py
+++ b/ply/yacc.py
@@ -32,7 +32,7 @@
# -----------------------------------------------------------------------------
#
# This implements an LR parser that is constructed from grammar rules defined
-# as Python functions. The grammer is specified by supplying the BNF inside
+# as Python functions. The grammar is specified by supplying the BNF inside
# Python documentation strings. The inspiration for this technique was borrowed
# from John Aycock's Spark parsing system. PLY might be viewed as cross between
# Spark and the GNU bison utility.