From 90579933f87c7b1e641aa7023c9db469252d0eeb Mon Sep 17 00:00:00 2001 From: UncleScientist <77306152+UncleScientist@users.noreply.github.com> Date: Tue, 28 Mar 2023 13:03:39 -0400 Subject: [PATCH] Fix typo in condition.rs (#8238) # Objective - Fixes a typo in the docs ## Solution - Corrected the wording --- crates/bevy_ecs/src/schedule/condition.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/schedule/condition.rs b/crates/bevy_ecs/src/schedule/condition.rs index 0ad7f05917..5e002f6793 100644 --- a/crates/bevy_ecs/src/schedule/condition.rs +++ b/crates/bevy_ecs/src/schedule/condition.rs @@ -844,7 +844,7 @@ pub mod common_conditions { /// /// world.resource_mut::>().send(MyEvent); /// - /// // A `MyEvent` event has been push so `my_system` will run + /// // A `MyEvent` event has been pushed so `my_system` will run /// app.run(&mut world); /// assert_eq!(world.resource::().0, 1); /// ```