Commit a4f836e3 authored by Victor Zverovich's avatar Victor Zverovich

Add missing ')'.

parent 8412ad6a
......@@ -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::
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment