diff --git a/src/ecs/headers/ecs.h b/src/ecs/headers/ecs.h index 3d37e48..b0b6ced 100644 --- a/src/ecs/headers/ecs.h +++ b/src/ecs/headers/ecs.h @@ -19,7 +19,7 @@ typedef void (*component_init_t)(component_t *component, va_list args); typedef void (*component_update_t)(component_t *component); // Component draw function. It is called in the main loop to draw the component on screen. This function is not necessary. typedef void (*component_draw_t)(component_t *component); -// Component deleter function. It is called when the component is removed. It should free the data in the component data but not the component data itself. +// Component deleter function. It is called when the component is removed. It should free the data in the component data but not the component itself. typedef void (*component_deleter_t)(component_t *component); typedef struct component_t {