Fix typo in part 2 of compiler series
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Danila Fedorin 2020-03-02 21:56:47 -08:00
parent 8f09b518ba
commit 31e9e58304

View File

@ -121,7 +121,7 @@ A\_{mult} & \\rightarrow P
\\end{align} \\end{align}
$$ $$
P, in this case, is an a__p__lication (remember, application has higher precedence than any binary operator). P, in this case, is an application (remember, application has higher precedence than any binary operator).
Once again, if there's no `*` or `\`, we simply fall through to a \\(P\\) nonterminal, representing application. Once again, if there's no `*` or `\`, we simply fall through to a \\(P\\) nonterminal, representing application.
Application is refreshingly simple: Application is refreshingly simple: