From d7db2657a012d1180ecee481b644553cbd095270 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 18 Dec 2012 08:46:53 -0800 Subject: [PATCH] "positional argument" -> argument (in C++ all arguments are positional in a sense, there are no keyword arguments). --- doc/string.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/string.rst b/doc/string.rst index 599ead99..b5fd021d 100644 --- a/doc/string.rst +++ b/doc/string.rst @@ -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