Fix doc comment.

This commit is contained in:
Talin 2025-07-17 08:46:00 -07:00
parent 2294d5b4f1
commit e1e5e6bbc4
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ use bevy_winit::cursor::CursorIcon;
#[cfg(feature = "custom_cursor")] #[cfg(feature = "custom_cursor")]
use bevy_winit::cursor::CustomCursor; use bevy_winit::cursor::CustomCursor;
/// A component that specifies the cursor icon to be used when the mouse is not hovering over /// A resource that specifies the cursor icon to be used when the mouse is not hovering over
/// any other entity. This is used to set the default cursor icon for the window. /// any other entity. This is used to set the default cursor icon for the window.
#[derive(Resource, Debug, Clone, Default)] #[derive(Resource, Debug, Clone, Default)]
pub struct DefaultEntityCursor(pub EntityCursor); pub struct DefaultEntityCursor(pub EntityCursor);

View File

@ -1,7 +1,7 @@
--- ---
title: Bevy Feathers title: Bevy Feathers
authors: ["@viridia", "@Atlas16A"] authors: ["@viridia", "@Atlas16A"]
pull_requests: [19730, 19900, 19928] pull_requests: [19730, 19900, 19928, 20169]
--- ---
To make it easier for Bevy engine developers and third-party tool creators to make comfortable, visually cohesive tooling, To make it easier for Bevy engine developers and third-party tool creators to make comfortable, visually cohesive tooling,