From 636f711d26b79cab068e029c4c058d45fca84970 Mon Sep 17 00:00:00 2001 From: Ame <104745335+ameknite@users.noreply.github.com> Date: Wed, 10 May 2023 23:35:27 -0600 Subject: [PATCH] Remove a repeated phrase in `UnsafeWorldCell` docs (#8590) I just found a typo while reading the docs. # Objective - Fix `UnsafeWorldCell` docs ## Solution - Remove the repeated phrase --- crates/bevy_ecs/src/world/unsafe_world_cell.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/bevy_ecs/src/world/unsafe_world_cell.rs b/crates/bevy_ecs/src/world/unsafe_world_cell.rs index 9ade682326..f6849b92c8 100644 --- a/crates/bevy_ecs/src/world/unsafe_world_cell.rs +++ b/crates/bevy_ecs/src/world/unsafe_world_cell.rs @@ -34,7 +34,6 @@ use std::{any::TypeId, cell::UnsafeCell, marker::PhantomData}; /// APIs like [`System::component_access`](crate::system::System::component_access). /// /// A system then can be executed using [`System::run_unsafe`](crate::system::System::run_unsafe) with a `&World` and use methods with interior mutability to access resource values. -/// access resource values. /// /// ### Example Usage ///