From dc9a68ad10d2b462e395f5131b02a1bf7359d62e Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Wed, 13 Nov 2019 13:49:47 -0800 Subject: [PATCH] Fix mistakes in blog posts --- content/blog/05_compiler_execution.md | 2 +- content/blog/08_compiler_llvm.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/blog/05_compiler_execution.md b/content/blog/05_compiler_execution.md index 5461646..f2ffc7c 100644 --- a/content/blog/05_compiler_execution.md +++ b/content/blog/05_compiler_execution.md @@ -46,7 +46,7 @@ defn snd p = { P x y -> { y } } } -defn slow x = { returns x after waiting for 4 seconds } +defn slow x = { returns x after waiting for 1 second } defn main = { fst (P (slow 320) (slow 6)) } ``` diff --git a/content/blog/08_compiler_llvm.md b/content/blog/08_compiler_llvm.md index 4c872f3..c71d94e 100644 --- a/content/blog/08_compiler_llvm.md +++ b/content/blog/08_compiler_llvm.md @@ -514,7 +514,7 @@ We run the following commands in our build directory: ``` ./compiler < ../examples/work1.txt -gcc -no-pie main.c progrma.o +gcc -no-pie ../runtime.c progrma.o ./a.out ```