From 75a97df1684a8a64ec7e7a2a108ca935daba8015 Mon Sep 17 00:00:00 2001 From: Mateusz Wachowiak Date: Sat, 9 Mar 2024 13:16:52 +0100 Subject: [PATCH] fix doc link --- crates/bevy_dev_tools/src/fps_overlay.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_dev_tools/src/fps_overlay.rs b/crates/bevy_dev_tools/src/fps_overlay.rs index da08d774c2ec0..544a347bad10c 100644 --- a/crates/bevy_dev_tools/src/fps_overlay.rs +++ b/crates/bevy_dev_tools/src/fps_overlay.rs @@ -15,7 +15,7 @@ use bevy_ui::node_bundles::TextBundle; /// A plugin that adds an FPS overlay to the Bevy application. /// Warning: This plugin will add [`FrameTimeDiagnosticsPlugin`] if it wasn't added before. pub struct FpsOverlayPlugin { - /// Starting configuration of overlay, this can be later be changed through `[FpsOverlayConfig]` resource. + /// Starting configuration of overlay, this can be later be changed through [`FpsOverlayConfig`] resource. pub config: FpsOverlayConfig, }