diff --git a/crates/bevy_reflect/src/lib.rs b/crates/bevy_reflect/src/lib.rs index 0782e0f7389f72..551d3bdbc93d6e 100644 --- a/crates/bevy_reflect/src/lib.rs +++ b/crates/bevy_reflect/src/lib.rs @@ -57,7 +57,7 @@ pub use type_uuid::*; /// A catch-all trait bound by the core reflection traits for easy reflection-based trait bounds. /// -/// > __Note:__ You do _not_ need to implement this trait manually. +/// You do _not_ need to implement this trait manually. /// > It is automatically implemented for all types that implement its supertraits. /// > And these supertraits are all automatically derived with the [`Reflect`](bevy_reflect_derive::Reflect) derive. /// diff --git a/examples/reflection/generic_reflection.rs b/examples/reflection/generic_reflection.rs index c54fc60889fd10..ca978bf9490eb3 100644 --- a/examples/reflection/generic_reflection.rs +++ b/examples/reflection/generic_reflection.rs @@ -17,7 +17,7 @@ fn main() { /// Until the reflection API stabilizes, these trait bounds are liable to change. While we currently /// only require [`Reflect`] right now, we may eventually require others. /// -/// So rather than adding each trait to our generic arguments manually (and having to update them +/// Rather than adding each trait to our generic arguments manually (and having to update them /// if the requirements ever change), we can simply use the catch-all trait, [`Reflectable`]. #[derive(Reflect)] struct MyType {