From aa77fef2ad841b751fc5b2ee71276de500d84f13 Mon Sep 17 00:00:00 2001 From: Linus Date: Tue, 18 May 2021 18:18:17 +0200 Subject: [PATCH] Fix example in readme forgot parens. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 276df61..1a25c14 100644 --- a/README.md +++ b/README.md @@ -79,9 +79,9 @@ Due to clause reordering, positional updates are not supported. If you want to u ``` scheme (loop ((:for a (in-list 1 2 3) - (:bind b (expensive-operation1 a)) + (:bind (b (expensive-operation1 a))) (:when (test? b)) - (:bind c (expensive-operation2 b)) + (:bind (c (expensive-operation2 b))) (:when test2? c) (:acc acc (listing c)))) => acc)