File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,13 +94,13 @@ struct SubApp {
94
94
}
95
95
96
96
impl SubApp {
97
- /// run the `SubApp`'s schedule
97
+ /// Runs the `SubApp`'s schedule.
98
98
pub fn run ( & mut self ) {
99
99
self . app . schedule . run ( & mut self . app . world ) ;
100
100
self . app . world . clear_trackers ( ) ;
101
101
}
102
102
103
- /// extract data from main world to sub app
103
+ /// Extracts data from main world to this sub- app.
104
104
pub fn extract ( & mut self , main_world : & mut World ) {
105
105
( self . extract ) ( main_world, & mut self . app ) ;
106
106
}
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ impl Schedule {
361
361
. and_then ( |stage| stage. downcast_mut :: < T > ( ) )
362
362
}
363
363
364
- /// Remove a [`Stage`] from the schedule
364
+ /// Removes a [`Stage`] from the schedule.
365
365
pub fn remove_stage ( & mut self , stage_label : impl StageLabel ) -> Option < Box < dyn Stage > > {
366
366
let label = stage_label. as_label ( ) ;
367
367
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ pub enum RenderStage {
92
92
Cleanup ,
93
93
}
94
94
95
- /// Resource for holding the extract stage of the rendering schedule
95
+ /// Resource for holding the extract stage of the rendering schedule.
96
96
#[ derive( Resource ) ]
97
97
pub struct ExtractStage ( pub SystemStage ) ;
98
98
You can’t perform that action at this time.
0 commit comments