From b5600ab447a75fe8c25f086919b2816ad1686cc0 Mon Sep 17 00:00:00 2001 From: Rickey <29479099+RickeyChen@users.noreply.github.com> Date: Sun, 27 Jun 2021 03:07:17 +0800 Subject: [PATCH] Update clarity-reference.json `false` should be `true` here. --- src/_data/clarity-reference.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_data/clarity-reference.json b/src/_data/clarity-reference.json index 2791c1cc..e6af1197 100644 --- a/src/_data/clarity-reference.json +++ b/src/_data/clarity-reference.json @@ -133,7 +133,7 @@ "input_type": "bool, ...", "output_type": "bool", "signature": "(or b1 b2 ...)", - "description": "Returns `true` if any boolean inputs are `true`. Importantly, the supplied arguments are evaluated in-order and lazily. Lazy evaluation means that if one of the arguments returns `false`, the function short-circuits, and no subsequent arguments are evaluated.", + "description": "Returns `true` if any boolean inputs are `true`. Importantly, the supplied arguments are evaluated in-order and lazily. Lazy evaluation means that if one of the arguments returns `true`, the function short-circuits, and no subsequent arguments are evaluated.", "example": "(or true false) ;; Returns true\n(or (is-eq (+ 1 2) 1) (is-eq 4 4)) ;; Returns true\n(or (is-eq (+ 1 2) 1) (is-eq 3 4)) ;; Returns false\n(or (is-eq (+ 1 2) 3) (is-eq 4 4)) ;; Returns true\n" }, {