Merge pull request #2245 from Said6289/small-typo-in-linalg-any

Fix typo in linalg.any
This commit is contained in:
gingerBill
2022-12-13 11:37:59 +00:00
committed by GitHub

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