diff options
| author | Said Al Attrach <alattrach.said@yahoo.com> | 2022-12-13 12:18:58 +0100 |
|---|---|---|
| committer | Said Al Attrach <alattrach.said@yahoo.com> | 2022-12-13 12:18:58 +0100 |
| commit | 70e48e39a487f34bf0f9404d6a63d4bb9bbfda7d (patch) | |
| tree | 7172d99d83b073aac68833c726063f883a845ef1 | |
| parent | 09c1128d9e6778107964f52eac1f5ecbce3ce153 (diff) | |
Fix typo in linalg.any
| -rw-r--r-- | core/math/linalg/extended.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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 } } |