Fix broken example in handle_map/doc.odin

This commit is contained in:
Karl Zylinski
2026-08-19 17:13:38 +02:00
parent 36ae65bba2
commit 4d7edd08d1

View File

@@ -48,7 +48,7 @@ Example:
hm.remove(&entities, h1)
h3 := hm.add(&entities, Entity{pos = {6, 7}})
assert(hm.is_valid(entities, h3))
assert(hm.is_valid(&entities, h3))
it := hm.iterator_make(&entities)
for e, h in hm.iterate(&it) {