diff --git a/crates/bevy_ecs/src/schedule/state.rs b/crates/bevy_ecs/src/schedule/state.rs index d33f0b3ab9..9792f51584 100644 --- a/crates/bevy_ecs/src/schedule/state.rs +++ b/crates/bevy_ecs/src/schedule/state.rs @@ -24,7 +24,7 @@ pub use bevy_ecs_macros::States; /// You can access the current state of type `T` with the [`State`] resource, /// and the queued state with the [`NextState`] resource. /// -/// State transitions typically occur in the [`OnEnter`] and [`OnExit`] schedules, +/// State transitions typically occur in the [`OnEnter`] and [`OnExit`] schedules, /// which can be run via the [`apply_state_transition::`] system. /// /// # Example