summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2017-12-02 13:40:21 -0600
committerGitHub <noreply@github.com>2017-12-02 13:40:21 -0600
commit7f9b69fe3ab9e2b17c73d1ed86b50f797843455e (patch)
tree7da71ebe101c6730732c979a1aebbcfba9de295e
parenteed7b38128687be54ec4468cc22426cc1b3c24fc (diff)
parent2ef24dedd4def0ff1ee74a50902ef567c23d24cb (diff)
downloadply-7f9b69fe3ab9e2b17c73d1ed86b50f797843455e.tar.gz
Merge pull request #127 from psihonavt/patch-1
Update 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.