From aa25107eb415e3b8449f2a9f234c7a71beabbfb9 Mon Sep 17 00:00:00 2001 From: Puzzled <149773488+ThePuzzledDev@users.noreply.github.com> Date: Sun, 21 Jan 2024 02:52:02 +0000 Subject: [PATCH] Changed 'two' to 'to' (#864) Co-authored-by: Alice Cecile --- content/learn/book/getting-started/ecs/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/learn/book/getting-started/ecs/_index.md b/content/learn/book/getting-started/ecs/_index.md index 219c666d79..3a1391ddb5 100644 --- a/content/learn/book/getting-started/ecs/_index.md +++ b/content/learn/book/getting-started/ecs/_index.md @@ -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.