From f5f9514bfc855b9bcfe54bab364292ddae64ea71 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 28 Mar 2020 00:20:28 -0400 Subject: [PATCH] Fix comment --- Firmware/MotorControl/timer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Firmware/MotorControl/timer.hpp b/Firmware/MotorControl/timer.hpp index a5e571cf..c118ace5 100644 --- a/Firmware/MotorControl/timer.hpp +++ b/Firmware/MotorControl/timer.hpp @@ -35,7 +35,7 @@ class Timer { private: T timer_ = static_cast(0); // Current state - T timeout_ = static_cast(0); // Time before + T timeout_ = static_cast(0); // Time to count T interval_ = static_cast(0); // Amount to increment each time update() is called bool running_ = false; // update() only increments if runing_ is true };