From f0e567a0cb036b5f043a85c6722733efdd72bb00 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 9 Aug 2022 16:53:27 +0000 Subject: [PATCH] fix: typo in system params docs (#5624) # Objective - Fix a typo on `SystemParam` docs ## Solution - added 'be'. - Hurray my first OSS PR! --- --- 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 4935cf4634e971..7523fe1ac9fbe6 100644 --- a/crates/bevy_ecs/src/system/system_param.rs +++ b/crates/bevy_ecs/src/system/system_param.rs @@ -41,7 +41,7 @@ use std::{ /// /// `#[system_param(ignore)]`: /// Can be added to any field in the struct. Fields decorated with this attribute -/// will created with the default value upon realisation. +/// will be created with the default value upon realisation. /// This is most useful for `PhantomData` fields, to ensure that the required lifetimes are /// used, as shown in the example. ///