From 6a77ea3c9347196845560744a0116f37d5fa1eaf Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 25 Oct 2020 08:59:36 -0700 Subject: [PATCH] Tweak markup --- ChangeLog.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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``