From 43ce6605ebe6e5a81718a7485b4d60a402a4a990 Mon Sep 17 00:00:00 2001 From: Grant Moyer Date: Mon, 7 Sep 2020 11:27:10 -0400 Subject: [PATCH] Typo --- examples/ecs/parallel_query.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ecs/parallel_query.rs b/examples/ecs/parallel_query.rs index be367fcbcd2c6..baef9ef166851 100644 --- a/examples/ecs/parallel_query.rs +++ b/examples/ecs/parallel_query.rs @@ -24,7 +24,7 @@ fn spawn_system( } } -// Move sprties according to their velocity +// Move sprites according to their velocity fn move_system(pool: Res, mut sprites: Query<(&mut Translation, &Velocity)>) { // Compute the new location of each sprite in parallel on the // ComputeTaskPool using batches of 32 sprties