From 88e73f8edaa1214fc2c9b84a2fc0fcfa00db006c Mon Sep 17 00:00:00 2001 From: theotherphil Date: Thu, 22 May 2025 19:54:02 +0100 Subject: [PATCH] Fix one-character typo in SystemParam docs (#19338) # Objective Remove errant "a" from docs. (I'm assuming that this sort of trivial fix is easy enough to merge that it's worth doing, but let me know if you'd prefer me to not bother.) --- crates/bevy_ecs/src/system/system_param.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/system/system_param.rs b/crates/bevy_ecs/src/system/system_param.rs index 6ee7e08fb5..14c3feb664 100644 --- a/crates/bevy_ecs/src/system/system_param.rs +++ b/crates/bevy_ecs/src/system/system_param.rs @@ -224,7 +224,7 @@ pub unsafe trait SystemParam: Sized { /// and creates a new instance of this param's [`State`](SystemParam::State). fn init_state(world: &mut World, system_meta: &mut SystemMeta) -> Self::State; - /// For the specified [`Archetype`], registers the components accessed by this [`SystemParam`] (if applicable).a + /// For the specified [`Archetype`], registers the components accessed by this [`SystemParam`] (if applicable). /// /// # Safety /// `archetype` must be from the [`World`] used to initialize `state` in [`SystemParam::init_state`].