From 70e48e39a487f34bf0f9404d6a63d4bb9bbfda7d Mon Sep 17 00:00:00 2001 From: Said Al Attrach Date: Tue, 13 Dec 2022 12:18:58 +0100 Subject: [PATCH] Fix typo in linalg.any --- core/math/linalg/extended.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/linalg/extended.odin b/core/math/linalg/extended.odin index f6da366ba..b78697cbd 100644 --- a/core/math/linalg/extended.odin +++ b/core/math/linalg/extended.odin @@ -531,7 +531,7 @@ not_equal :: proc{not_equal_single, not_equal_array} any :: proc(x: $A/[$N]bool) -> (out: bool) { for e in x { - if x { + if e { return true } }