From 6dea196e29f0c8b2ab32c73796a47e1f11f47214 Mon Sep 17 00:00:00 2001 From: Ukendio Date: Fri, 20 Dec 2024 13:08:02 +0100 Subject: [PATCH] Adding trailing commas --- jecs.luau | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jecs.luau b/jecs.luau index 18e81a6c..f7eea3c4 100644 --- a/jecs.luau +++ b/jecs.luau @@ -1840,9 +1840,9 @@ export type World = { --- Checks if the world contains the given entity contains: (self: World, entity: Entity) -> boolean, - each: (self: World, id: Id) -> () -> (Entity), + each: (self: World, id: Id) -> () -> Entity, - children: (self: World, id: Id) -> () -> (Entity), + children: (self: World, id: Id) -> () -> Entity, --- Searches the world for entities that match a given query query: ((self: World, Id) -> Query) @@ -1939,5 +1939,5 @@ return { query_iter_init = query_iter_init, query_with = query_with, query_without = query_without, - query_archetypes = query_archetypes + query_archetypes = query_archetypes, }