aboutsummaryrefslogtreecommitdiff
path: root/core/container
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-17 20:43:59 +0100
committerGitHub <noreply@github.com>2026-02-17 20:43:59 +0100
commitc666dbf7c2d77d1f765eb6ddbde50540b46c3574 (patch)
tree601d920d5026f0278cbf2e8c1bbcf7df49e76ed2 /core/container
parentad6cde0b3c4653ad524e69846cfc96b8b2f36e43 (diff)
parent111c2506d5dae2fbfa74d94fcaa9f436fcda35e7 (diff)
Merge pull request #6296 from Faker-09/xar_flase_typo
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
}