From 99884345542805bf7486216b336ff8b1a5a61a17 Mon Sep 17 00:00:00 2001 From: Linus Date: Fri, 21 May 2021 10:22:21 +0200 Subject: [PATCH] Clarified readme regarding final-expr --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9998c2..958ee41 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ This of course also means accumulation is done before the body is executed, whic ``` ### Ability to be explicit about returned values -If you have no "final expression", denoted by => expr, one is added that returns all final values of the :acc clauses in the loop. If none is present, the return value is unspecified. +If you have no "final expression", denoted by => expr, one is added that returns all final values of the :acc clauses in the loop. If no :acc clause or explicit final-expression is present is present, the return value is unspecified. ``` scheme (loop ((:for a (up-from 1 5))