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)