From e650fa4d8b3c4eab1ecd53fa241d68f5a23f3e19 Mon Sep 17 00:00:00 2001 From: Alexander Shaduri Date: Thu, 29 Feb 2024 18:28:35 +0400 Subject: [PATCH] Fixed a typo. --- src/hz/format_unit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;