Fix color stream print example

This commit is contained in:
Orivej Desh 2019-10-10 21:33:15 +00:00
parent a82c1dc6d9
commit 12696e78a7

View File

@ -534,7 +534,7 @@ void vprint(std::FILE* f, const text_style& ts, const S& format,
Formats a string and prints it to the specified file stream using ANSI Formats a string and prints it to the specified file stream using ANSI
escape sequences to specify text formatting. escape sequences to specify text formatting.
Example: Example:
fmt::print(fmt::emphasis::bold | fg(fmt::color::red), fmt::print(stderr, fmt::emphasis::bold | fg(fmt::color::red),
"Elapsed time: {0:.2f} seconds", 1.23); "Elapsed time: {0:.2f} seconds", 1.23);
*/ */
template <typename S, typename... Args, template <typename S, typename... Args,