"positional argument" -> argument (in C++ all arguments are positional in a sense, there are no keyword arguments).

This commit is contained in:
Victor Zverovich 2012-12-18 08:46:53 -08:00
parent 382e25ec3e
commit d7db2657a0

View File

@ -140,8 +140,8 @@ automatically inserted in that order.
Some simple format string examples::
"First, thou shalt count to {0}" // References first positional argument
"Bring me a {}" // Implicitly references the first positional argument
"First, thou shalt count to {0}" // References the first argument
"Bring me a {}" // Implicitly references the first argument
"From {} to {}" // Same as "From {0} to {1}"
The *format_spec* field contains a specification of how the value should be