Fix a few typos (#13404)

# Objective

Fix a few typos I spotted while looking over #13347

## Solution

Fix em
This commit is contained in:
Rob Parrett 2024-06-03 17:51:03 -07:00 committed by GitHub
parent ec7b3490f6
commit ab2add64fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,14 +31,14 @@ use std::{
#[diagnostic::on_unimplemented(
message = "`{Self}` is not an `Event`",
label = "invalid `Event`",
note = "consider annotating `{Self}` with `#[derive(Event]`"
note = "consider annotating `{Self}` with `#[derive(Event)]`"
)]
pub trait Event: Send + Sync + 'static {}
/// An `EventId` uniquely identifies an event stored in a specific [`World`].
///
/// An `EventId` can among other things be used to trace the flow of an event from the point it was
/// sent to the point it was processed. `EventId`s increase montonically by send order.
/// sent to the point it was processed. `EventId`s increase monotonically by send order.
///
/// [`World`]: crate::world::World
#[cfg_attr(feature = "bevy_reflect", derive(Reflect))]