From b827a97fd67fe90e84b1501ca56a5c689c544fb4 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 1 Jul 2014 16:59:25 -0700 Subject: [PATCH] Correct example. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 203b7fb5..396cc71e 100644 --- a/README.rst +++ b/README.rst @@ -101,7 +101,7 @@ which take arbitrary arguments: // Prints formatted error message. void report_error(const char *format, const fmt::ArgList &args) { - fmt::print("Error: {}"); + fmt::print("Error: "); fmt::print(format, args); } FMT_VARIADIC(void, report_error, const char *)