Skip to content

Commit c015dcc

Browse files
committed
Fix incorrect parameter name in doxygen comment
1 parent bb5d296 commit c015dcc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

distr/flecs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4178,7 +4178,7 @@ ecs_entity_t flecs_component_ids_get(
41784178
*/
41794179
FLECS_API
41804180
ecs_entity_t flecs_component_ids_get_alive(
4181-
const ecs_world_t *stage_world,
4181+
const ecs_world_t *world,
41824182
int32_t index);
41834183

41844184
/** Set world local component id.

include/flecs/private/api_support.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ ecs_entity_t flecs_component_ids_get(
273273
*/
274274
FLECS_API
275275
ecs_entity_t flecs_component_ids_get_alive(
276-
const ecs_world_t *stage_world,
276+
const ecs_world_t *world,
277277
int32_t index);
278278

279279
/** Set world local component id.

0 commit comments

Comments
 (0)