mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix typo in World::observe
(#14492)
# Objective - Fix a typo in the documentation for `World::observe` ## Solution - Change `Spawn` to `Spawns` and `it's` to `its`
This commit is contained in:
parent
724fe49c73
commit
4f5b8ca08c
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ impl Observers {
|
|||
}
|
||||
|
||||
impl World {
|
||||
/// Spawn a "global" [`Observer`] and returns it's [`Entity`].
|
||||
/// Spawns a "global" [`Observer`] and returns its [`Entity`].
|
||||
pub fn observe<E: Event, B: Bundle, M>(
|
||||
&mut self,
|
||||
system: impl IntoObserverSystem<E, B, M>,
|
||||
|
|
Loading…
Reference in a new issue