File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ impl App {
206
206
/// Creates a new [`App`] with some default structure to enable core engine features.
207
207
/// This is the preferred constructor for most use cases.
208
208
///
209
- /// This calls [`App::add_default_schedules`] and [`App::add_defaults_sets`] .
209
+ /// This calls [`App::add_default_schedules`].
210
210
pub fn new ( ) -> App {
211
211
App :: default ( )
212
212
}
@@ -232,7 +232,7 @@ impl App {
232
232
/// Advances the execution of the [`Schedule`] by one cycle.
233
233
///
234
234
/// This method also updates sub apps.
235
- /// See [`insert_sub_app`](Self::insert_sub_app) and [`run_once`](Schedule::run_once) for more details.
235
+ /// See [`insert_sub_app`](Self::insert_sub_app) for more details.
236
236
///
237
237
/// The schedule run by this method is determined by the [`outer_schedule_label`](App) field.
238
238
/// In normal usage, this is [`CoreSchedule::Outer`], which will run [`CoreSchedule::Startup`]
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ impl CoreSchedule {
71
71
world. run_schedule ( CoreSchedule :: Main ) ;
72
72
}
73
73
74
- /// Initializes a single threaded schedule for [`CoreSchedule::Outer`] that contains the [`outer_loop`] system.
74
+ /// Initializes a single threaded schedule for [`CoreSchedule::Outer`] that contains the [`outer_loop`](CoreSchedule::outer_loop) system.
75
75
pub fn outer_schedule ( ) -> Schedule {
76
76
let mut schedule = Schedule :: new ( ) ;
77
77
schedule. set_executor_kind ( bevy_ecs:: schedule_v3:: ExecutorKind :: SingleThreaded ) ;
You can’t perform that action at this time.
0 commit comments