@@ -190,7 +190,7 @@ impl std::fmt::Display for ReflectKind {
190
190
/// [the derive macro for `Reflect`]: bevy_reflect_derive::Reflect
191
191
/// [crate-level documentation]: crate
192
192
#[ diagnostic:: on_unimplemented(
193
- message = "`{Self}` can not be introspected" ,
193
+ message = "`{Self}` does not implement `PartialReflect` and cannot be introspected" ,
194
194
note = "consider annotating `{Self}` with `#[derive(Reflect)]`"
195
195
) ]
196
196
pub trait PartialReflect : DynamicTypePath + Send + Sync
@@ -396,7 +396,7 @@ where
396
396
/// meaning any type which implements `Reflect` implements `PartialReflect` by definition.
397
397
///
398
398
/// It's recommended to use [the derive macro] rather than manually implementing this trait.
399
- /// Doing so will automatically implement this trait, [`PartialReflect`] and many other useful traits for reflection,
399
+ /// Doing so will automatically implement this trait, [`PartialReflect`], and many other useful traits for reflection,
400
400
/// including one of the appropriate subtraits: [`Struct`], [`TupleStruct`] or [`Enum`].
401
401
///
402
402
/// See the [crate-level documentation] to see how this trait can be used.
@@ -405,7 +405,7 @@ where
405
405
/// [the derive macro]: bevy_reflect_derive::Reflect
406
406
/// [crate-level documentation]: crate
407
407
#[ diagnostic:: on_unimplemented(
408
- message = "`{Self}` can not be fully reflected" ,
408
+ message = "`{Self}` does not implement `Reflect` and cannot be fully reflected" ,
409
409
note = "consider annotating `{Self}` with `#[derive(Reflect)]`"
410
410
) ]
411
411
pub trait Reflect : PartialReflect + Any {
0 commit comments