diff --git a/src/hz/format_unit.h b/src/hz/format_unit.h index 410d297..e57deb0 100644 --- a/src/hz/format_unit.h +++ b/src/hz/format_unit.h @@ -156,7 +156,7 @@ inline std::string format_time_length(std::chrono::seconds secs) using day_unit = std::chrono::duration , std::chrono::hours::period>>; - // don't use uints here - there bring bugs. + // don't use uints here - they bring bugs. const int64_t min_size = 60; const int64_t hour_size = min_size * 60; const int64_t day_size = hour_size * 24;