fix double negative
continuous-integration/drone/push Build is passing Details

main
Evan Hemsley 2020-07-20 13:57:45 -07:00
parent 67cf66eb42
commit 3675db32ea
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ weight: 35
WorldBuilder is used to construct a World from Engines, Renderers, and an initial state of Entities, Components, and Messages.
The WorldBuilder enforces certain rules about Engine structure. It is forbidden to have messages create cycles between Engines, and no Component may not be mutated by more than one Engine without declaring a priority.
The WorldBuilder enforces certain rules about Engine structure. It is forbidden to have messages create cycles between Engines, and no Component may be mutated by more than one Engine without declaring a priority.
The WorldBuilder uses Engines and their Message read/send information to determine a valid ordering of the Engines, which is given to the World.