From 654239e29ff99ee5c219c480397481ec691f3c9b Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Wed, 6 Nov 2019 21:34:29 -0800 Subject: [PATCH] Fix last sentence of compiler post --- content/blog/08_compiler_llvm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/blog/08_compiler_llvm.md b/content/blog/08_compiler_llvm.md index c51b38d..3cfe6dc 100644 --- a/content/blog/08_compiler_llvm.md +++ b/content/blog/08_compiler_llvm.md @@ -575,5 +575,5 @@ In the next several posts, we will improve our compiler to properly free unused memory usign a __garbage collector__, implement lambda functions using __lambda lifting__, -and use implement `let/in` expressions. See +and use our Alloc instruction to implement `let/in` expressions. See you there!