From d9486d08aed2de1960fc36dfd142d06880849a38 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Tue, 8 Oct 2019 23:50:21 -0700 Subject: [PATCH] Fix type in compiler blog --- content/blog/06_compiler_semantics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/06_compiler_semantics.md b/content/blog/06_compiler_semantics.md index 516c85e..91058ea 100644 --- a/content/blog/06_compiler_semantics.md +++ b/content/blog/06_compiler_semantics.md @@ -397,6 +397,6 @@ and finally map it and insert the new branch code into the list of branches. After we're done with all the branches, we also check for non-exhaustive patterns, since otherwise we could run into runtime errors. With this, the case expression, -an the last of the AST nodes, can be compiled. +and the last of the AST nodes, can be compiled. {{< todo >}}Backport bugfix in case's typecheck{{< /todo >}}