From a94aa60c265e4b578d24f24afe726f8d99e8033f Mon Sep 17 00:00:00 2001 From: Deep-co-de <140584097+Deep-co-de@users.noreply.github.com> Date: Fri, 7 Jun 2024 09:50:25 +0000 Subject: [PATCH] updated comment to explain conditional derive macro --- rust_crate/src/interface.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust_crate/src/interface.rs b/rust_crate/src/interface.rs index bcecae8b..9136cfe8 100644 --- a/rust_crate/src/interface.rs +++ b/rust_crate/src/interface.rs @@ -17,7 +17,7 @@ pub type SharedCell = OnceLock>>>; /// Optionally, a custom binary called `binary` can also be included. /// This type is generic, and the message /// can be of any type declared in Protobuf. -/// If the bevy feature is used, every message can be received as an event in bevy. +/// If the bevy feature is used, every message can be received as an event in Bevy. #[cfg_attr(feature = "bevy", derive(Event))] pub struct DartSignal { pub message: T,