We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6271c02 commit ed23668Copy full SHA for ed23668
1 file changed
lib/timer.cpp
@@ -135,5 +135,5 @@ std::string TimerResultsData::durationToString(std::chrono::milliseconds duratio
135
if (minutes.count() > 0)
136
ellapsedTime += std::to_string(minutes.count()) + "m ";
137
std::string secondsStr{std::to_string(seconds.count())};
138
- return (ellapsedTime + secondsStr.substr(0, secondsStr.length() - 3) + "s ");
+ return (ellapsedTime + secondsStr.substr(0, secondsStr.length() - 3) + "s");
139
}
0 commit comments