Skip to content

Commit

Permalink
Fix doc of [Schedules] to mention exclusion of current schedule. (b…
Browse files Browse the repository at this point in the history
…evyengine#11360)

Document that [`Schedules`] resource does not include the current
schedule.
  • Loading branch information
tjamaan committed Jan 15, 2024
1 parent aeab690 commit fcc1113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/schedule/schedule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use crate::{
world::World,
};

/// Resource that stores [`Schedule`]s mapped to [`ScheduleLabel`]s.
/// Resource that stores [`Schedule`]s mapped to [`ScheduleLabel`]s excluding the current running [`Schedule`].
#[derive(Default, Resource)]
pub struct Schedules {
inner: HashMap<InternedScheduleLabel, Schedule>,
Expand Down

0 comments on commit fcc1113

Please sign in to comment.