summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Koval <psihonavt@gmail.com>2017-08-02 11:08:38 -0700
committerGitHub <noreply@github.com>2017-08-02 11:08:38 -0700
commit2ef24dedd4def0ff1ee74a50902ef567c23d24cb (patch)
tree5fc5de8d5e44270b85fbae98a6d72582d954ac66
parentcbef61c58f8b1b3b5e2fc3c2414bcac4303538ce (diff)
downloadply-2ef24dedd4def0ff1ee74a50902ef567c23d24cb.tar.gz
Update yacc.py
small typo fix
-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.