From 31e9e58304cafade2990a06b4698c4f48ed3ce47 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Mon, 2 Mar 2020 21:56:47 -0800 Subject: [PATCH] Fix typo in part 2 of compiler series --- content/blog/02_compiler_parsing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/02_compiler_parsing.md b/content/blog/02_compiler_parsing.md index fb30db9..6b09da2 100644 --- a/content/blog/02_compiler_parsing.md +++ b/content/blog/02_compiler_parsing.md @@ -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: