[Tutorial] fix missing "s" from argument template
authorTommaso Pecorella <tommaso.pecorella@unifi.it>
Mon, 05 Jan 2015 19:43:49 +0100
changeset 11122 78b3c90cddcb
parent 11121 a887a3d37d5b
child 11123 893aa21e059c
[Tutorial] fix missing "s" from argument template
doc/tutorial/source/getting-started.rst
--- a/doc/tutorial/source/getting-started.rst	Sun Jan 04 10:17:20 2015 -0800
+++ b/doc/tutorial/source/getting-started.rst	Mon Jan 05 19:43:49 2015 +0100
@@ -798,12 +798,12 @@
 tests in parallel, by repeatedly invoking the real testing program,
 ``test-runner``.  To invoke ``test-runner`` directly for a single test::
 
-  $ ./waf --run test-runner --command-template="% --suite=mytest --verbose"
+  $ ./waf --run test-runner --command-template="%s --suite=mytest --verbose"
 
 This passes the arguments to the ``test-runner`` program.  To print the
 available ``test-runner`` options::
 
-  $ ./waf --run test-runner --command-template="% --help"
+  $ ./waf --run test-runner --command-template="%s --help"
 
 Debugging
 +++++++++