Minor spelling mistake fix

This commit is contained in:
BirDt_ 2026-03-27 16:16:00 +08:00
parent 022b24533f
commit cf72a7983f

View file

@ -8,8 +8,8 @@ Imugi is an ECS engine.
** Entities
Entities are game objects stored in an SRFI-69 hash table. A hash table is used for O(1) lookup.
Entity keys within the hash table are symbols, either set intentionally or automatically generated via gensym.
Entities are identified by their hash, and are each a list of components.
Entities are queued for addition and removal to/form the hash table ~world~.
Entities are identified by their key, and are each a list of components.
Entities are queued for addition and removal to/from the hash table ~world~.
Entity removal and addition is performed at the beginning of each frame, with removal occuring first.
There exists a hash map of SRFI-113 sets, ~component-sets~.