Merge pull request #6296 from Faker-09/xar_flase_typo

Fix typo in xar.array_linear_search() return
This commit is contained in:
Jeroen van Rijn
2026-02-17 20:43:59 +01:00
committed by GitHub

View File

@@ -410,7 +410,7 @@ array_linear_search :: proc(x: ^$X/Array($T, $SHIFT), elem: T) -> (index: int, f
return i, true
}
}
return -1, flase
return -1, false
}