From 04885eb49c426ad1f053ab5106cedb0aa4ef20ab Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Mon, 4 Sep 2023 22:43:26 -0700 Subject: [PATCH] Fix doc link in transparent_window example (#9697) # Objective This link became invalid after #5589. ## Solution The docs that were being linked to still exist, but they're on `Window` now. This PR just updates that link. --- examples/window/transparent_window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/window/transparent_window.rs b/examples/window/transparent_window.rs index a8ac34ce1f..ffb8090208 100644 --- a/examples/window/transparent_window.rs +++ b/examples/window/transparent_window.rs @@ -1,7 +1,7 @@ //! Shows how to display a window in transparent mode. //! //! This feature works as expected depending on the platform. Please check the -//! [documentation](https://docs.rs/bevy/latest/bevy/prelude/struct.WindowDescriptor.html#structfield.transparent) +//! [documentation](https://docs.rs/bevy/latest/bevy/prelude/struct.Window.html#structfield.transparent) //! for more details. #[cfg(target_os = "macos")]