diff options
| author | Shane Shrybman <shrybman@teksavvy.com> | 2026-02-17 14:40:15 -0500 |
|---|---|---|
| committer | Shane Shrybman <shrybman@teksavvy.com> | 2026-02-17 14:40:15 -0500 |
| commit | 111c2506d5dae2fbfa74d94fcaa9f436fcda35e7 (patch) | |
| tree | 601d920d5026f0278cbf2e8c1bbcf7df49e76ed2 | |
| parent | ad6cde0b3c4653ad524e69846cfc96b8b2f36e43 (diff) | |
Fix typo in xar.array_linear_search() return
| -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 } |