From e1e5e6bbc4313ad5074779a105314d2b998e4aa6 Mon Sep 17 00:00:00 2001 From: Talin Date: Thu, 17 Jul 2025 08:46:00 -0700 Subject: [PATCH] Fix doc comment. --- crates/bevy_feathers/src/cursor.rs | 2 +- release-content/release-notes/feathers.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_feathers/src/cursor.rs b/crates/bevy_feathers/src/cursor.rs index 61e1ad6bf3..8c154521f8 100644 --- a/crates/bevy_feathers/src/cursor.rs +++ b/crates/bevy_feathers/src/cursor.rs @@ -16,7 +16,7 @@ use bevy_winit::cursor::CursorIcon; #[cfg(feature = "custom_cursor")] 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. #[derive(Resource, Debug, Clone, Default)] pub struct DefaultEntityCursor(pub EntityCursor); diff --git a/release-content/release-notes/feathers.md b/release-content/release-notes/feathers.md index 16d0cd5b70..86d04f5997 100644 --- a/release-content/release-notes/feathers.md +++ b/release-content/release-notes/feathers.md @@ -1,7 +1,7 @@ --- title: Bevy Feathers 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,