summaryrefslogtreecommitdiff
path: root/doc/ply.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ply.md')
-rw-r--r--doc/ply.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ply.md b/doc/ply.md
index a7d72c1..da6665c 100644
--- a/doc/ply.md
+++ b/doc/ply.md
@@ -95,7 +95,7 @@ values. For example:
('ID','x'), ('EQUALS','='), ('NUMBER','3'),
('PLUS','+'), ('NUMBER','42'), ('TIMES','*'),
('LPAREN','('), ('ID','s'), ('MINUS','-'),
- ('ID','t'), ('RPAREN',')'
+ ('ID','t'), ('RPAREN',')')
The specification of tokens is done by writing a series of regular
expression rules. The next section shows how this is done using
@@ -1369,7 +1369,7 @@ function. For example, consider the two rules in our earlier example:
'expression : expression PLUS term'
p[0] = p[1] + p[3]
- def p_expression_minus(t):
+ def p_expression_minus(p):
'expression : expression MINUS term'
p[0] = p[1] - p[3]