summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2014-08-20 09:27:23 -0500
committerBen Beltran <ben@nsovocal.com>2014-08-20 09:27:23 -0500
commit509e372f9ccbc49344493fdb36b2afb17103f4da (patch)
tree7f023e4d6c8a2109486716e5af36e2de392fb1dc /README.md
parent60a6915a0b24975e28a02b28e43d34f6dbb15625 (diff)
Normalizes API for entitiesv0.1.7
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6703b5f..6724652 100644
--- a/README.md
+++ b/README.md
@@ -45,9 +45,9 @@ eventually be consumed by "Systems"
}
});
-You can add components to entities by using the add method:
+You can add components to entities by using the addComponent method:
- entity.add(new PositionComponent());
+ entity.addComponent(new PositionComponent());
Systems can refer to entities by requesting nodes.