]> code.bitgloo.com Git - clyne/entityx.git/commitdiff
Fixed syntax error.
authorZandor Smith <info@zsinfo.nl>
Fri, 21 Sep 2018 11:28:28 +0000 (13:28 +0200)
committerGitHub <noreply@github.com>
Fri, 21 Sep 2018 11:28:28 +0000 (13:28 +0200)
README.md

index 0c5e7217d28ffcaf5506951b30f48f1d1269e443..9ffd516171965ac05ca433f3ebfec2afc5809bbb 100644 (file)
--- a/README.md
+++ b/README.md
@@ -158,7 +158,7 @@ entity components:
 ```c++
 entities.each<Position, Direction>([](Entity entity, Position &position, Direction &direction) {
   // Do things with entity, position and direction.
-};)
+});
 ```