1- /*
1+ /**
22 * @file addons/meta/rtt_lifecycle.c
33 * @brief Runtime components lifecycle management
44 */
@@ -98,7 +98,7 @@ void flecs_rtt_struct_xtor(
9898}
9999
100100/* Generic struct constructor. It will read hook information call data from
101- * the structs 's lifecycle context and call the constructors configured when
101+ * the struct 's lifecycle context and call the constructors configured when
102102 * the type was created. */
103103static
104104void flecs_rtt_struct_ctor (
@@ -112,7 +112,7 @@ void flecs_rtt_struct_ctor(
112112}
113113
114114/* Generic struct destructor. It will read hook information call data from
115- * the structs 's lifecycle context and call the constructors configured when
115+ * the struct 's lifecycle context and call the destructors configured when
116116 * the type was created. */
117117static
118118void flecs_rtt_struct_dtor (
@@ -126,7 +126,7 @@ void flecs_rtt_struct_dtor(
126126}
127127
128128/* Generic move hook. It will read hook information call data from the
129- * structs 's lifecycle context and call the move hooks configured when
129+ * struct 's lifecycle context and call the move hooks configured when
130130 * the type was created. */
131131static
132132void flecs_rtt_struct_move (
@@ -157,7 +157,7 @@ void flecs_rtt_struct_move(
157157}
158158
159159/* Generic copy hook. It will read hook information call data from the
160- * structs 's lifecycle context and call the copy hooks configured when
160+ * struct 's lifecycle context and call the copy hooks configured when
161161 * the type was created. */
162162static
163163void flecs_rtt_struct_copy (
@@ -188,7 +188,7 @@ void flecs_rtt_struct_copy(
188188}
189189
190190/* Generic compare hook. It will read hook information call data from the
191- * structs 's lifecycle context and call the compare hooks configured when
191+ * struct 's lifecycle context and call the compare hooks configured when
192192 * the type was created. */
193193static
194194int flecs_rtt_struct_cmp (
@@ -220,7 +220,7 @@ int flecs_rtt_struct_cmp(
220220}
221221
222222/* Generic equals hook. It will read hook information call data from the
223- * structs 's lifecycle context and call the equals hooks configured when
223+ * struct 's lifecycle context and call the equals hooks configured when
224224 * the type was created. */
225225static
226226bool flecs_rtt_struct_equals (
@@ -339,7 +339,7 @@ ecs_rtt_struct_ctx_t * flecs_rtt_configure_struct_hooks(
339339
340340/* Checks if a struct member's types have hooks installed. If so, it generates
341341 * and installs required hooks for the struct type itself. These hooks will
342- * invoke the member hooks when necessary */
342+ * invoke the member hooks when necessary */
343343static
344344void flecs_rtt_init_default_hooks_struct (
345345 ecs_world_t * world ,
@@ -507,7 +507,7 @@ void flecs_rtt_array_ctor(
507507 }
508508}
509509
510- /* Generic array constructor . It will invoke the destructor of the underlying
510+ /* Generic array destructor . It will invoke the destructor of the underlying
511511 * type for all the elements */
512512static
513513void flecs_rtt_array_dtor (
0 commit comments