From 17ec5c501a612a619aba91d743ba6965c30463d7 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Mon, 31 Jul 2023 19:29:32 -0600 Subject: [PATCH] Proofreading --- posts/2023-07-31_wasm-game-of-life-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2023-07-31_wasm-game-of-life-1.md b/posts/2023-07-31_wasm-game-of-life-1.md index f5a389d..2ae8b23 100644 --- a/posts/2023-07-31_wasm-game-of-life-1.md +++ b/posts/2023-07-31_wasm-game-of-life-1.md @@ -382,7 +382,7 @@ But what's this `$getNewValueAtPosition` function? Let's have a look at that! ``` This is (effectively) an unrolled loop. I could make this code shorter -but un-unrolling my loop, but I couldn't find a way to do that which didn't +by un-unrolling my loop, but I couldn't find a way to do that which didn't immediately result in more instructions being run overall, so *for the moment* I'm leaving it like this.