From a4f836e32538038e47a9e564c4dd903773af34bc Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 28 Dec 2012 06:42:17 -0800 Subject: [PATCH] Add missing ')'. --- doc/format.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/format.rst b/doc/format.rst index 93d5475b..72687ab5 100644 --- a/doc/format.rst +++ b/doc/format.rst @@ -395,7 +395,7 @@ Accessing arguments by position:: // Result: "a, b, c" Format("{2}, {1}, {0}") << 'a' << 'b' << 'c'; // Result: "c, b, a" - Format("{0}{1}{0}" << "abra" << "cad"; // arguments' indices can be repeated + Format("{0}{1}{0}") << "abra" << "cad"; // arguments' indices can be repeated // Result: "abracadabra" Aligning the text and specifying a width::