From 3fdbdd09052640ece1272ee8c050d85041b15da1 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Sun, 26 Feb 2023 21:46:24 +0100 Subject: [PATCH] Fix typo --- src/plugin/plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/plugin.rs b/src/plugin/plugin.rs index ffd761dd..143e6332 100644 --- a/src/plugin/plugin.rs +++ b/src/plugin/plugin.rs @@ -64,7 +64,7 @@ where match stage { PhysicsStages::SyncBackend => { let systems = SystemSet::new() - .with_system(systems::update_character_controls) // Run the character controller befor ethe manual transform propagation. + .with_system(systems::update_character_controls) // Run the character controller before the manual transform propagation. .with_system( bevy::transform::transform_propagate_system .after(systems::update_character_controls),