Fixed Typo in the description of EntityMut (#11103)

# Objective
Fix a typo in the description of the  `EntityMut` struct
This commit is contained in:
Kees van Beilen 2024-01-01 17:51:25 +01:00 committed by GitHub
parent 189ceaf0d3
commit 2fd0043cfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,7 @@ impl<'a> From<&'a EntityMut<'_>> for EntityRef<'a> {
/// Provides mutable access to a single entity and all of its components. /// Provides mutable access to a single entity and all of its components.
/// ///
/// Contrast with [`EntityWorldMut`], with allows adding and removing components, /// Contrast with [`EntityWorldMut`], which allows adding and removing components,
/// despawning the entity, and provides mutable access to the entire world. /// despawning the entity, and provides mutable access to the entire world.
/// Because of this, `EntityWorldMut` cannot coexist with any other world accesses. /// Because of this, `EntityWorldMut` cannot coexist with any other world accesses.
/// ///