Skip to content

Commit

Permalink
Adding trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Ukendio committed Dec 20, 2024
1 parent 455eb23 commit 6dea196
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jecs.luau
Original file line number Diff line number Diff line change
Expand Up @@ -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: (<A>(self: World, Id<A>) -> Query<A>)
Expand Down Expand Up @@ -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,
}

0 comments on commit 6dea196

Please sign in to comment.