File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ impl App {
206206 /// Creates a new [`App`] with some default structure to enable core engine features.
207207 /// This is the preferred constructor for most use cases.
208208 ///
209- /// This calls [`App::add_default_schedules`] and [`App::add_defaults_sets`] .
209+ /// This calls [`App::add_default_schedules`].
210210 pub fn new ( ) -> App {
211211 App :: default ( )
212212 }
@@ -232,7 +232,7 @@ impl App {
232232 /// Advances the execution of the [`Schedule`] by one cycle.
233233 ///
234234 /// 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.
236236 ///
237237 /// The schedule run by this method is determined by the [`outer_schedule_label`](App) field.
238238 /// 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 {
7171 world. run_schedule ( CoreSchedule :: Main ) ;
7272 }
7373
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.
7575 pub fn outer_schedule ( ) -> Schedule {
7676 let mut schedule = Schedule :: new ( ) ;
7777 schedule. set_executor_kind ( bevy_ecs:: schedule_v3:: ExecutorKind :: SingleThreaded ) ;
You can’t perform that action at this time.
0 commit comments