Fix comment

This commit is contained in:
Unknown
2020-03-28 00:20:28 -04:00
parent 128ae3935c
commit f5f9514bfc
+1 -1
View File
@@ -35,7 +35,7 @@ class Timer {
private:
T timer_ = static_cast<T>(0); // Current state
T timeout_ = static_cast<T>(0); // Time before
T timeout_ = static_cast<T>(0); // Time to count
T interval_ = static_cast<T>(0); // Amount to increment each time update() is called
bool running_ = false; // update() only increments if runing_ is true
};