Skip to content

Commit

Permalink
Fixed typo in Manual.md
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderMertens authored Oct 12, 2022
1 parent d526ccd commit 464c817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ The `ecs_get` operation returns a const pointer which should not be modified by
```c
Position *p = ecs_get_mut(world, e, Position);
p->x++;
ecs_modified(world, p, Position);
ecs_modified(world, e, Position);
```
### Component handles
Expand Down

0 comments on commit 464c817

Please sign in to comment.