diff --git a/README.md b/README.md index abc57e1..1ff674f 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ local Assemblages = Concord.assemblages ## ECS Concord is an Entity Component System (ECS for short) library. This is a coding paradigm where _composition_ is used over _inheritance_. -Because of this it is easier to write more modular code. It often allowes you to combine any form of behaviour for the objects in your game (Entities). +Because of this it is easier to write more modular code. It often allows you to combine any form of behaviour for the objects in your game (Entities). As the name might suggest, ECS consists of 3 core things: Entities, Components, and Systems. A proper understanding of these is required to use Concord effectively. We'll start with the simplest one.