From ee142c4be0ad7fd26f22c3dd246ff501e415c496 Mon Sep 17 00:00:00 2001 From: Andriamanitra Date: Fri, 22 Sep 2023 03:04:41 +0300 Subject: [PATCH] truthy/falsey is more accurate than true/false --- src/boot/boot.janet | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index f87672c7..67959f09 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -590,10 +590,10 @@ * `:repeat n` -- repeats the next inner loop `n` times. * `:when condition` -- only evaluates the current loop body when `condition` - is true. + is truthy. * `:unless condition` -- only evaluates the current loop body when `condition` - is false. + is falsey. The `loop` macro always evaluates to nil. ```