Skip to content

Commit 60fa3e8

Browse files
Doc links T_T
1 parent 01a43ae commit 60fa3e8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/bevy_app/src/app.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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`]

crates/bevy_app/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)