Add missing ')'.
This commit is contained in:
parent
8412ad6aeb
commit
a4f836e325
@ -395,7 +395,7 @@ Accessing arguments by position::
|
|||||||
// Result: "a, b, c"
|
// Result: "a, b, c"
|
||||||
Format("{2}, {1}, {0}") << 'a' << 'b' << 'c';
|
Format("{2}, {1}, {0}") << 'a' << 'b' << 'c';
|
||||||
// Result: "c, b, a"
|
// 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"
|
// Result: "abracadabra"
|
||||||
|
|
||||||
Aligning the text and specifying a width::
|
Aligning the text and specifying a width::
|
||||||
|
Loading…
Reference in New Issue
Block a user