From d282b8632c55ffbb78258496dc5d30fb74897a78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= <8672791+mockersf@users.noreply.github.com> Date: Fri, 17 Dec 2021 13:54:24 +0100 Subject: [PATCH] typo Co-Authored-By: bjorn3 --- examples/tools/bevymark.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/tools/bevymark.rs b/examples/tools/bevymark.rs index 3662db99530c4..6a4ca642aa55b 100644 --- a/examples/tools/bevymark.rs +++ b/examples/tools/bevymark.rs @@ -47,7 +47,7 @@ fn main() { .add_system_set( SystemSet::new() .with_run_criteria(FixedTimestep::step(0.2)) - .with_system(scheduled_spawne), + .with_system(scheduled_spawner), ) .run(); } @@ -57,7 +57,7 @@ struct BirdScheduled { per_wave: u128, } -fn scheduled_spawne( +fn scheduled_spawner( mut commands: Commands, windows: Res, mut scheduled: ResMut,