From c3eb3a1acf40f3474558db904c9b29b268694bd2 Mon Sep 17 00:00:00 2001 From: BD103 <59022059+BD103@users.noreply.github.com> Date: Fri, 3 May 2024 15:50:17 -0400 Subject: [PATCH] Give alt text to Bevy logo (#13205) # Objective - In the documentation of the `bevy` crate, we embed the Bevy logo. ([docs.rs](https://docs.rs/bevy/0.13.2/bevy/index.html), [logo](https://bevyengine.org/assets/bevy_logo_docs.svg)) - It was first added in 9aae341. - Markdown supports adding alternate descriptions for images that either cannot be loaded or for screen readers. ## Solution - Add alt text for the Bevy logo. --- ## Changelog - Added alt text to Bevy logo. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c8aaf02244..3ff8c2b680 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ #![allow(clippy::single_component_path_imports)] #![cfg_attr(docsrs, feature(doc_auto_cfg))] -//! [![](https://bevyengine.org/assets/bevy_logo_docs.svg)](https://bevyengine.org) +//! [![Bevy Logo](https://bevyengine.org/assets/bevy_logo_docs.svg)](https://bevyengine.org) //! //! Bevy is an open-source modular game engine built in Rust, with a focus on developer productivity //! and performance.