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-jexl.git
The following commit(s) were added to refs/heads/master by this push: new 93f038d Javadoc: Use "file name" instead of "filename". 93f038d is described below commit 93f038d7a90e9dd76892f1b296b4c70faa3d666b Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu May 30 15:27:51 2019 -0400 Javadoc: Use "file name" instead of "filename". --- src/main/java/org/apache/commons/jexl3/scripting/Main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/scripting/Main.java b/src/main/java/org/apache/commons/jexl3/scripting/Main.java index eb94b16..9504806 100644 --- a/src/main/java/org/apache/commons/jexl3/scripting/Main.java +++ b/src/main/java/org/apache/commons/jexl3/scripting/Main.java @@ -55,14 +55,14 @@ public class Main { /** * Test application for JexlScriptEngine (JSR-223 implementation). * - * If a single argument is present, it is treated as a filename of a JEXL + * If a single argument is present, it is treated as a file name of a JEXL * script to be evaluated. Any exceptions terminate the application. * * Otherwise, lines are read from standard input and evaluated. * ScriptExceptions are logged, and do not cause the application to exit. * This is done so that interactive testing is easier. * - * @param args (optional) filename to evaluate. Stored in the args variable. + * @param args (optional) file name to evaluate. Stored in the args variable. * * @throws Exception if parsing or IO fail */