mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 14:08:32 +00:00
Fix doc of [Schedules
] to mention exclusion of current schedule. (#11360)
Document that [`Schedules`] resource does not include the current schedule.
This commit is contained in:
parent
aeab690fdb
commit
fcc1113ec8
1 changed files with 1 additions and 1 deletions
|
@ -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>,
|
||||
|
|
Loading…
Add table
Reference in a new issue