Fix broken example in handle_map/doc.odin

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

View File

@@ -52,7 +52,7 @@ Example:
it := hm.iterator_make(&entities)
for e, h in hm.iterate(&it) {
assert(hm.is_valid(entities, h))
assert(hm.is_valid(&entities, h))
e.pos += {1, 2}
}
}