diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-17 20:43:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-17 20:43:59 +0100 |
| commit | c666dbf7c2d77d1f765eb6ddbde50540b46c3574 (patch) | |
| tree | 601d920d5026f0278cbf2e8c1bbcf7df49e76ed2 /core | |
| parent | ad6cde0b3c4653ad524e69846cfc96b8b2f36e43 (diff) | |
| parent | 111c2506d5dae2fbfa74d94fcaa9f436fcda35e7 (diff) | |
Merge pull request #6296 from Faker-09/xar_flase_typo
Fix typo in xar.array_linear_search() return
Diffstat (limited to 'core')
| -rw-r--r-- | core/container/xar/xar.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/container/xar/xar.odin b/core/container/xar/xar.odin index b200df0e6..e7215af71 100644 --- a/core/container/xar/xar.odin +++ b/core/container/xar/xar.odin @@ -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 } |