From 4eb7c2d56fa4647de70cf3a0c95d92867e9d9bb4 Mon Sep 17 00:00:00 2001 From: Maxim Voloshin Date: Tue, 28 Oct 2025 09:46:11 +0200 Subject: [PATCH] doc: path fix in a comment --- crates/bevy_log/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, }