From bb5e1247063ccac91bf31ce57961714f635f851a Mon Sep 17 00:00:00 2001 From: Konstantin Nazarov Date: Tue, 27 Aug 2024 23:20:01 +0100 Subject: [PATCH] Fix a typo in the logic test --- test/logic.vli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/logic.vli b/test/logic.vli index 644fa1e..4f5e627 100644 --- a/test/logic.vli +++ b/test/logic.vli @@ -19,5 +19,5 @@ ;; "and" is short-circuiting and should stop evaluation on first "false" (assert (= (and false (/ 1 0)) false)) -;; "and" is short-circuiting and should stop evaluation on first "true" +;; "or" is short-circuiting and should stop evaluation on first "true" (assert (or true (/ 1 0)))