From 69396347af67b0307866a24283fcaaad02f98a59 Mon Sep 17 00:00:00 2001 From: cre Date: Thu, 17 Mar 2022 13:55:02 -0400 Subject: [PATCH] Update color.h (#2815) fixed typo in comment --- include/fmt/color.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/color.h b/include/fmt/color.h index 8e26dfa3..762809ca 100644 --- a/include/fmt/color.h +++ b/include/fmt/color.h @@ -679,7 +679,7 @@ struct formatter, Char> : formatter { **Example**:: fmt::print("Elapsed time: {s:.2f} seconds", - fmt::styled(1.23, fmt::fg(fmt::colors::green) | fmt::bg(fmt::color::blue))); + fmt::styled(1.23, fmt::fg(fmt::color::green) | fmt::bg(fmt::color::blue))); \endrst */ template