Skip to content

Commit ed23668

Browse files
committed
Anoher small nit
1 parent 6271c02 commit ed23668

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/timer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,5 @@ std::string TimerResultsData::durationToString(std::chrono::milliseconds duratio
135135
if (minutes.count() > 0)
136136
ellapsedTime += std::to_string(minutes.count()) + "m ";
137137
std::string secondsStr{std::to_string(seconds.count())};
138-
return (ellapsedTime + secondsStr.substr(0, secondsStr.length() - 3) + "s ");
138+
return (ellapsedTime + secondsStr.substr(0, secondsStr.length() - 3) + "s");
139139
}

0 commit comments

Comments
 (0)