From 38fb7a6691066c5e2f14e4700a8cf6bdd6f427b5 Mon Sep 17 00:00:00 2001 From: matrackif Date: Mon, 6 Dec 2021 17:58:44 +0100 Subject: [PATCH] Change comment from lowercase int to uppercase Int --- include/fmt/chrono.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/chrono.h b/include/fmt/chrono.h index ca138438..e4db4735 100644 --- a/include/fmt/chrono.h +++ b/include/fmt/chrono.h @@ -1318,7 +1318,7 @@ inline bool isfinite(T) { return true; } -// Converts value to int and checks that it's in the range [0, upper). +// Converts value to Int and checks that it's in the range [0, upper). template ::value)> inline Int to_nonnegative_int(T value, Int upper) { FMT_ASSERT(value >= 0 && to_unsigned(value) <= to_unsigned(upper),