File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ use std::{
31
31
#[ diagnostic:: on_unimplemented(
32
32
message = "`{Self}` is not an `Event`" ,
33
33
label = "invalid `Event`" ,
34
- note = "consider annotating `{Self}` with `#[derive(Event]`"
34
+ note = "consider annotating `{Self}` with `#[derive(Event) ]`"
35
35
) ]
36
36
pub trait Event : Send + Sync + ' static { }
37
37
38
38
/// An `EventId` uniquely identifies an event stored in a specific [`World`].
39
39
///
40
40
/// An `EventId` can among other things be used to trace the flow of an event from the point it was
41
- /// sent to the point it was processed. `EventId`s increase montonically by send order.
41
+ /// sent to the point it was processed. `EventId`s increase monotonically by send order.
42
42
///
43
43
/// [`World`]: crate::world::World
44
44
#[ cfg_attr( feature = "bevy_reflect" , derive( Reflect ) ) ]
You can’t perform that action at this time.
0 commit comments