From 2fd0043cfd5ec68b1528b8ab3355c3a772a02015 Mon Sep 17 00:00:00 2001 From: Kees van Beilen <76178905+Kees-van-Beilen@users.noreply.github.com> Date: Mon, 1 Jan 2024 17:51:25 +0100 Subject: [PATCH] Fixed Typo in the description of EntityMut (#11103) # Objective Fix a typo in the description of the `EntityMut` struct --- crates/bevy_ecs/src/world/entity_ref.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/world/entity_ref.rs b/crates/bevy_ecs/src/world/entity_ref.rs index 7d21ae61a6..2641132c65 100644 --- a/crates/bevy_ecs/src/world/entity_ref.rs +++ b/crates/bevy_ecs/src/world/entity_ref.rs @@ -190,7 +190,7 @@ impl<'a> From<&'a EntityMut<'_>> for EntityRef<'a> { /// 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. /// Because of this, `EntityWorldMut` cannot coexist with any other world accesses. ///