Skip to content

Commit

Permalink
Changed 'two' to 'to' (#864)
Browse files Browse the repository at this point in the history
Co-authored-by: Alice Cecile <[email protected]>
  • Loading branch information
ThePuzzledDev and alice-i-cecile authored Jan 21, 2024
1 parent 1e74fc2 commit aa25107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/learn/book/getting-started/ecs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ fn main() {
}
```

Note that we have used `.chain()` on the two systems. This is because we want them two to run in exactly the order they're listed in the code: with `update_people` occurring before `greet_people`.
Note that we have used `.chain()` on the two systems. This is because we want both of them to run in exactly the order they're listed in the code: with `update_people` occurring before `greet_people`.
If they weren’t, the name might change after we greet the people.

But we don’t add the `hello_world` system to the chain, because it doesn’t matter when it runs. This way, Bevy can run `hello_world` in parallel while the other systems are running.

0 comments on commit aa25107

Please sign in to comment.