From eb4871ee3effb6eeecca5fcebd427da58021d3ee Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Tue, 21 Jul 2026 15:25:45 +0200 Subject: [PATCH] Typo. --- src/ecs/headers/ecs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {