Skip to content

Commit

Permalink
#1395 Fix TermAt indexing in C# docs
Browse files Browse the repository at this point in the history
Signed-off-by: Tomas Slusny <[email protected]>
  • Loading branch information
deathbeam authored Oct 12, 2024
1 parent 3d1d6b9 commit 5150a24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Systems.md
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ world.system<Game>("PrintTime")

```cs
world.Routine<Game>("PrintTime")
.TermAt(1).Singleton()
.TermAt(0).Singleton()
.Kind(Ecs.OnUpdate)
.Each((ref Game g) =>
{
Expand Down

0 comments on commit 5150a24

Please sign in to comment.