From 49739be3eb002c9a262ffb398db0999baafbe470 Mon Sep 17 00:00:00 2001 From: Pagwin Date: Thu, 10 Jul 2025 23:59:50 -0400 Subject: [PATCH] minor change --- posts/common_proc_patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/common_proc_patterns.md b/posts/common_proc_patterns.md index e6bd829..0b07ba6 100644 --- a/posts/common_proc_patterns.md +++ b/posts/common_proc_patterns.md @@ -529,7 +529,7 @@ many languages take this further by making `self` a magic argument name that cau In addition other languages will frequently allow for storing references to modify variables later. -For our purposes neither of those additions are necessary so we won't add them. +For our purposes none of those additions are necessary so we won't add them. ## Minor pain point fix