From f6bcb25e16a02f3388c586049101db67faa417ff Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 10 Mar 2022 16:26:17 -0800 Subject: [PATCH] Remove extra dot --- include/fmt/format-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index 372295ee..599252dd 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -222,7 +222,7 @@ template constexpr bool has_implicit_bit() { // Returns the number of significand bits in Float excluding the implicit bit. template constexpr int num_significand_bits() { // Subtract 1 to account for an implicit most significant bit in the - // normalized form.. + // normalized form. return std::numeric_limits::digits - (has_implicit_bit() ? 1 : 0); }