diff --git a/crates/bevy_log/src/lib.rs b/crates/bevy_log/src/lib.rs index 6a75a179516c9..988fa8e23ad71 100644 --- a/crates/bevy_log/src/lib.rs +++ b/crates/bevy_log/src/lib.rs @@ -240,7 +240,7 @@ pub struct LogPlugin { /// Access to [`App`] is also provided to allow for communication between the /// [`Subscriber`](tracing::Subscriber) and the [`App`]. /// - /// Please see the `examples/log_layers.rs` for a complete example. + /// Please see the `examples/app/log_layers.rs` for a complete example. pub custom_layer: fn(app: &mut App) -> Option, /// Override the default [`tracing_subscriber::fmt::Layer`] with a custom one. @@ -253,7 +253,7 @@ pub struct LogPlugin { /// For example, you can use [`tracing_subscriber::fmt::Layer::without_time`] to remove the /// timestamp from the log output. /// - /// Please see the `examples/log_layers.rs` for a complete example. + /// Please see the `examples/app/log_layers.rs` for a complete example. pub fmt_layer: fn(app: &mut App) -> Option, }