Skip to content

Commit b4abf96

Browse files
authored
Merge pull request #24 from Survengi/patch-1
Update README.md
2 parents 4294dd3 + 45dbf2c commit b4abf96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ pub fn main() !void {
5656
ecs.TAG(world, Eats);
5757
ecs.TAG(world, Apples);
5858
59-
ecs.ADD_SYSTEM(world, "move system", ecs.OnUpdate, move_system);
60-
ecs.ADD_SYSTEM(world, "move system with iterator", ecs.OnUpdate, move_system_with_it);
59+
_ = ecs.ADD_SYSTEM(world, "move system", ecs.OnUpdate, move_system);
60+
_ = ecs.ADD_SYSTEM(world, "move system with iterator", ecs.OnUpdate, move_system_with_it);
6161
6262
const bob = ecs.new_entity(world, "Bob");
6363
_ = ecs.set(world, bob, Position, .{ .x = 0, .y = 0 });

0 commit comments

Comments
 (0)