Commit d7db2657 authored by Victor Zverovich's avatar Victor Zverovich

"positional argument" -> argument (in C++ all arguments are positional in a...

"positional argument" -> argument (in C++ all arguments are positional in a sense, there are no keyword arguments).
parent 382e25ec
......@@ -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
......
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