From d26016264282628cd5a1355c1d198b2c9cfe9622 Mon Sep 17 00:00:00 2001 From: terrarier2111 <58695553+terrarier2111@users.noreply.github.com> Date: Sun, 18 Jul 2021 18:12:42 +0200 Subject: [PATCH] entity/systems: fixed typo in comment (#566) --- src/entity/systems.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entity/systems.rs b/src/entity/systems.rs index 922de11..af3101f 100644 --- a/src/entity/systems.rs +++ b/src/entity/systems.rs @@ -33,7 +33,7 @@ impl ecs::System for ApplyVelocity { fn update(&mut self, m: &mut ecs::Manager, _: &mut world::World, _: &mut render::Renderer) { for e in m.find(&self.filter) { if m.get_component(e, self.movement).is_some() { - // Player's handle their own phyiscs + // Player's handle their own physics continue; } let pos = m.get_component_mut(e, self.position).unwrap(); @@ -69,7 +69,7 @@ impl ecs::System for ApplyGravity { fn update(&mut self, m: &mut ecs::Manager, _: &mut world::World, _: &mut render::Renderer) { for e in m.find(&self.filter) { if m.get_component(e, self.movement).is_some() { - // Player's handle their own phyiscs + // Player's handle their own physics continue; } let vel = m.get_component_mut(e, self.velocity).unwrap();