Fix typo in linalg.any

This commit is contained in:
Said Al Attrach
2022-12-13 12:18:58 +01:00
parent 09c1128d9e
commit 70e48e39a4

View File

@@ -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
}
}