Fix an example (thanks Alexey Kuzmenko)

This commit is contained in:
Victor Zverovich 2020-05-20 15:52:19 -07:00
parent 943532fece
commit 297c3b2ed5

View File

@ -100,7 +100,7 @@ locale::
#include <locale>
std::locale::global(std::locale("en_US.UTF-8"));
auto s = fmt::format("{:n}", 1000000); // s == "1,000,000"
auto s = fmt::format("{:L}", 1000000); // s == "1,000,000"
.. _format-api: