From 51314416a00936eaa103cc609a84d2f8064d8cb8 Mon Sep 17 00:00:00 2001 From: Protowalker <6126319+Protowalker@users.noreply.github.com> Date: Mon, 2 Aug 2021 19:26:21 -0400 Subject: [PATCH] fix typo (paramater to parameter) --- crates/bevy_ecs/src/system/function_system.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/system/function_system.rs b/crates/bevy_ecs/src/system/function_system.rs index 2b9e77e806811..bb85fc8bbc019 100644 --- a/crates/bevy_ecs/src/system/function_system.rs +++ b/crates/bevy_ecs/src/system/function_system.rs @@ -225,7 +225,7 @@ pub struct InputMarker; /// /// You get this by calling [`IntoSystem::system`] on a function that only accepts /// [`SystemParam`]s. The output of the system becomes the functions return type, while the input -/// becomes the functions [`In`] tagged parameter or `()` if no such paramater exists. +/// becomes the functions [`In`] tagged parameter or `()` if no such parameter exists. pub struct FunctionSystem where Param: SystemParam,