From a35a9cb418065e31486b610a5bb9a2fb3df1332f Mon Sep 17 00:00:00 2001 From: BD103 <59022059+BD103@users.noreply.github.com> Date: Mon, 14 Jul 2025 17:25:44 -0400 Subject: [PATCH] Fix link to `bevy_solari` logo (#20097) # Objective The `bevy_solari` logo doesn't load in the [dev-docs](https://dev-docs.bevy.org/bevy/solari/index.html): image This is because the link to the image, , returns a 404 not found. ## Solution Fix the link to point to ! ![Solari Logo](https://raw.githubusercontent.com/bevyengine/bevy/refs/heads/main/assets/branding/bevy_solari.svg) ## Testing Open up the crate page for `bevy_solari` and make sure the image loads :) ```sh cargo doc -p bevy_solari --open --no-deps ``` --- crates/bevy_solari/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_solari/src/lib.rs b/crates/bevy_solari/src/lib.rs index 3847bc074a..8f07a004a6 100644 --- a/crates/bevy_solari/src/lib.rs +++ b/crates/bevy_solari/src/lib.rs @@ -4,7 +4,7 @@ //! //! See [`SolariPlugins`] for more info. //! -//! ![`bevy_solari` logo](https://raw.githubusercontent.com/bevyengine/bevy/assets/branding/bevy_solari.svg) +//! ![`bevy_solari` logo](https://raw.githubusercontent.com/bevyengine/bevy/refs/heads/main/assets/branding/bevy_solari.svg) pub mod pathtracer; pub mod realtime; pub mod scene;