From c217183cb989a3d9052cbb936514b4442ba60105 Mon Sep 17 00:00:00 2001 From: Tjakka5 Date: Sat, 4 Jan 2020 12:24:15 +0100 Subject: [PATCH] Fix typos in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf8d423..1b8b7fc 100644 --- a/README.md +++ b/README.md @@ -440,7 +440,7 @@ local mySystem = myWorld:getSystem(mySystemClass) ```lua -- Emit an event --- This will call the 'update' function of any added Systems +-- This will call the 'update' function of all added Systems if they have one -- They will be called in the order they were added myWorld:emit("update", dt) @@ -565,7 +565,7 @@ local entity_2 = Concord.entity(world) :give(Drawable) -- This Entity does exist in the World, but since it doesn't match any System's filters it won't do anything -local entity_2 = Concord.entity(world) +local entity_3 = Concord.entity(world) :give(Position, 200, 200)