Fix typo in part 2 of compiler series
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Danila Fedorin 2020-03-02 21:56:47 -08:00
parent 8f09b518ba
commit 31e9e58304
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ A\_{mult} & \\rightarrow P
\\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.
Application is refreshingly simple: