From 5cccba5d217d062d6ad3318cfa2f9861b3d455de Mon Sep 17 00:00:00 2001 From: Daniel Borges Date: Mon, 24 May 2021 20:05:36 +0000 Subject: [PATCH] Fixed a comment in the fixed timestep example (#2245) Co-authored-by: Daniel Borges --- examples/ecs/fixed_timestep.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ecs/fixed_timestep.rs b/examples/ecs/fixed_timestep.rs index bbc9a22d10900..e9ac0c036f52c 100644 --- a/examples/ecs/fixed_timestep.rs +++ b/examples/ecs/fixed_timestep.rs @@ -13,7 +13,7 @@ fn main() { .add_plugins(DefaultPlugins) // this system will run once every update (it should match your screen's refresh rate) .add_system(frame_update.system()) - // add a new stage that runs every two seconds + // add a new stage that runs twice a second .add_stage_after( CoreStage::Update, FixedUpdateStage,