fix typo (paramater to parameter) (#2590)

there was a typo 👀 i fixed it 👀
This commit is contained in:
Protowalker 2021-08-06 20:55:24 +00:00
parent 43d99bb583
commit 03e2045c8d

View file

@ -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<In, Out, Param, Marker, F>
where
Param: SystemParam,