aboutsummaryrefslogtreecommitdiff
path: root/core/container
diff options
context:
space:
mode:
authorShane Shrybman <shrybman@teksavvy.com>2026-02-17 14:40:15 -0500
committerShane Shrybman <shrybman@teksavvy.com>2026-02-17 14:40:15 -0500
commit111c2506d5dae2fbfa74d94fcaa9f436fcda35e7 (patch)
tree601d920d5026f0278cbf2e8c1bbcf7df49e76ed2 /core/container
parentad6cde0b3c4653ad524e69846cfc96b8b2f36e43 (diff)
Fix typo in xar.array_linear_search() return
Diffstat (limited to 'core/container')
-rw-r--r--core/container/xar/xar.odin2
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
}