From 2742611cad4aee6b1a5638bd1ebf132908f4a3d9 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 18 Sep 2021 11:09:24 -0700 Subject: [PATCH] Fix formatting --- include/fmt/format.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/fmt/format.h b/include/fmt/format.h index 425de979..dd0006bc 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2689,6 +2689,7 @@ template <> struct formatter { template struct group_digits_view { T value; }; /** + \rst Returns a view that formats an integer value using ',' as a locale-independent thousands separator. @@ -2696,6 +2697,7 @@ template struct group_digits_view { T value; }; fmt::print("{}", fmt::group_digits(12345)); // Output: "12,345" + \endrst */ template auto group_digits(T value) -> group_digits_view { return {value};