From 80024193c11ca6962e9c7de3ab88cec281940379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20Garc=C3=ADa=20Maleta?= <57372721+yeyon@users.noreply.github.com> Date: Mon, 28 Nov 2022 16:10:41 -0500 Subject: docs: fix couple of typos --- doc/ply.md | 4 ++-- 1 file 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] -- cgit v1.2.1