From 0cc6a18a9f135dfb71a696ea230a7709696adb33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sat, 18 Jan 2025 11:43:33 -0800 Subject: [PATCH] Fix typo in `or?` example --- src/library/Logic.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/library/Logic.nim b/src/library/Logic.nim index e3bf7f978d..baf2d6b3f9 100644 --- a/src/library/Logic.nim +++ b/src/library/Logic.nim @@ -317,7 +317,7 @@ proc defineLibrary*() = y: 4 if or? x=2 y>5 [ - print "yep, that's correct!"] + print "yep, that's correct!" ] ; yep, that's correct! @@ -469,4 +469,4 @@ proc defineLibrary*() = # Add Library #======================================= -Libraries.add(defineLibrary) \ No newline at end of file +Libraries.add(defineLibrary)