From 476b05db46b95d994f2c088a517ee9bf14fcc01b Mon Sep 17 00:00:00 2001 From: Pagwin Date: Fri, 11 Jul 2025 00:03:43 -0400 Subject: [PATCH] another revision --- 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 0b07ba6..987c84d 100644 --- a/posts/common_proc_patterns.md +++ b/posts/common_proc_patterns.md @@ -576,7 +576,7 @@ evenNumberIter <- { This iterator will emit values forever, which is fine, if we only want to have some of those values without getting stuck in a loop we can manually use `nextItem`, `FOREACH` is just a convenience not a necessity. -Here's something a bit meta, we can make an iterator which takes a different iterator and loops it forever (side effects of the original iterator will not be repeated) if iterator has anything. +Here's something a bit meta, we can make an iterator which takes a different iterator and loops it forever (side effects of the original iterator will not be repeated). ``` PROC makeLoop(originalIterator) {