From c31eaef1b057c36c126a4fa2be5c54c7ced7cf10 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 28 Aug 2013 10:54:18 -0700 Subject: [PATCH] Fix an example. --- format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format.h b/format.h index 360776b4..ba72c07b 100644 --- a/format.h +++ b/format.h @@ -867,7 +867,7 @@ void FormatCustomArg( Formatter out; out("Current point:\n"); - out("(-{:+f}, {:+f})") << 3.14 << -3.14; + out("({:+f}, {:+f})") << -3.14 << 3.14; This will populate the buffer of the ``out`` object with the following output: