From 543522c2183817b9070dce37b38bf9a2d72d3c44 Mon Sep 17 00:00:00 2001 From: NathanW Date: Sun, 13 Jun 2021 21:12:20 -0600 Subject: [PATCH] fix comment typo --- crates/bevy_ecs/src/system/commands/command_queue.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/system/commands/command_queue.rs b/crates/bevy_ecs/src/system/commands/command_queue.rs index 894980a5b6c089..e48784d0cb0283 100644 --- a/crates/bevy_ecs/src/system/commands/command_queue.rs +++ b/crates/bevy_ecs/src/system/commands/command_queue.rs @@ -147,7 +147,7 @@ mod test { assert_eq!(world.entities().len(), 2); - // The previous call to `apply` clearer the queue. + // The previous call to `apply` cleared the queue. // This call should do nothing. queue.apply(&mut world); assert_eq!(world.entities().len(), 2);