diff --git a/core/container/handle_map/doc.odin b/core/container/handle_map/doc.odin index 16b285982..a40affc3b 100644 --- a/core/container/handle_map/doc.odin +++ b/core/container/handle_map/doc.odin @@ -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} } }