Skip to content
Snippets Groups Projects
Verified Commit 9576c6c5 authored by Sankalp Gambhir's avatar Sankalp Gambhir
Browse files

Ex 3.5: typo in example rule

parent f3698c70
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
left-recursive). We can remove the left recursion by introducing a new left-recursive). We can remove the left recursion by introducing a new
non-terminal, \(A'\), such that: non-terminal, \(A'\), such that:
\begin{align*} \begin{align*}
A &::= A' \mid \beta A' \\ A &::= \beta A' \\
A' &::= \alpha A' \mid \epsilon A' &::= \alpha A' \mid \epsilon
\end{align*} \end{align*}
i.e., for the left-recursive rule \(A\alpha\), we instead attempt to parse i.e., for the left-recursive rule \(A\alpha\), we instead attempt to parse
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment