This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-exec.git
The following commit(s) were added to refs/heads/master by this push: new 43461ad Fix typo. 43461ad is described below commit 43461ad8b6c7ad99a2920d7b706fb76961fa2c3b Author: Gary Gregory <ggreg...@rocketsoftware.com> AuthorDate: Sun Apr 7 11:37:19 2019 -0400 Fix typo. --- src/site/apt/tutorial.apt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/apt/tutorial.apt b/src/site/apt/tutorial.apt index 6e520e5..a56d138 100644 --- a/src/site/apt/tutorial.apt +++ b/src/site/apt/tutorial.apt @@ -157,7 +157,7 @@ cmdLine.addArgument("/h"); cmdLine.addArgument("${file}"); HashMap map = new HashMap(); map.put("file", new File("invoice.pdf")); -commandLine.setSubstitutionMap(map); +cmdLine.setSubstitutionMap(map); DefaultExecuteResultHandler resultHandler = new DefaultExecuteResultHandler();