diff --git a/ChangeLog.rst b/ChangeLog.rst index f880c4af..a3d80b9c 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -223,7 +223,7 @@ Thanks `@Naios (Denis Blank) `_. -* Made the `#` specifier emit trailing zeros in addition to the decimal point +* Made the ``#`` specifier emit trailing zeros in addition to the decimal point (`#1797 `_). For example (`godbolt `__): @@ -235,7 +235,7 @@ fmt::print("{:#.2g}", 0.5); } - prints "0.50". + prints ``0.50``. * Changed the default floating point format to not include ``.0`` for consistency with ``std::format`` and ``std::to_chars``