From 040dc2a5d48d0c8a0cc07fbadee7324257d042b1 Mon Sep 17 00:00:00 2001 From: Cleroth Date: Fri, 23 Dec 2022 10:44:36 +0800 Subject: [PATCH] small typo in syntax.rst 0x1e was misread as 0x13, it looks like --- doc/syntax.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/syntax.rst b/doc/syntax.rst index e627f02f..3875cd40 100644 --- a/doc/syntax.rst +++ b/doc/syntax.rst @@ -497,7 +497,7 @@ Examples:: fmt::format("{}", std::vector{10, 20, 30}); // Result: [10, 20, 30] fmt::format("{::#x}", std::vector{10, 20, 30}); - // Result: [0xa, 0x14, 0x13] + // Result: [0xa, 0x14, 0x1e] fmt::format("{}", vector{'h', 'e', 'l', 'l', 'o'}); // Result: ['h', 'e', 'l', 'l', 'o'] fmt::format("{::}", vector{'h', 'e', 'l', 'l', 'o'});