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 d09df7e8 Javadoc spelling d09df7e8 is described below commit d09df7e8231b10eb8ffdf442836223288d5f8fcc Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Nov 26 15:53:16 2023 -0500 Javadoc spelling --- src/main/java/org/apache/commons/jexl3/JexlArithmetic.java | 2 +- src/main/java/org/apache/commons/jexl3/JexlBuilder.java | 2 +- .../java/org/apache/commons/jexl3/internal/introspection/ClassTool.java | 2 +- src/test/java/org/apache/commons/jexl3/ClassCreator.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java index fc6ad8a4..c51d11a3 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java +++ b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java @@ -951,7 +951,7 @@ public class JexlArithmetic { /** * Given a Number, return the value using the smallest type the result * will fit into. - * <p>This works hand in hand with parameter 'widening' in java + * <p>This works hand in hand with parameter 'widening' in Java * method calls, e.g. a call to substring(int,int) with an int and a long * will fail, but a call to substring(int,int) with an int and a short will * succeed.</p> diff --git a/src/main/java/org/apache/commons/jexl3/JexlBuilder.java b/src/main/java/org/apache/commons/jexl3/JexlBuilder.java index babc6655..dcde93b9 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlBuilder.java +++ b/src/main/java/org/apache/commons/jexl3/JexlBuilder.java @@ -669,7 +669,7 @@ public class JexlBuilder { /** * Sets the number of script/expression evaluations that can be stacked. - * @param size if not strictly positive, limit is reached when java StackOverflow is thrown. + * @param size if not strictly positive, limit is reached when Java StackOverflow is thrown. * @return this builder */ public JexlBuilder stackOverflow(final int size) { diff --git a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassTool.java b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassTool.java index 2a2872a5..0e406ecd 100644 --- a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassTool.java +++ b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassTool.java @@ -56,7 +56,7 @@ final class ClassTool { } /** - * Checks whether a class is exported by its module (java 9+). + * Checks whether a class is exported by its module (Java 9+). * The code performs the following sequence through reflection (since the same jar can run * on a Java8 or Java9+ runtime and the module features does not exist on 8). * <code> diff --git a/src/test/java/org/apache/commons/jexl3/ClassCreator.java b/src/test/java/org/apache/commons/jexl3/ClassCreator.java index fda0e32c..1e0b51ef 100644 --- a/src/test/java/org/apache/commons/jexl3/ClassCreator.java +++ b/src/test/java/org/apache/commons/jexl3/ClassCreator.java @@ -45,7 +45,7 @@ public class ClassCreator { static final String GEN_PATH = "/" + GEN_PACKAGE.replace(".", "/");///org/apache/commons/jexl3/generated"; static final String GEN_CLASS = GEN_PACKAGE + "."; /** - * Check if we can invoke Sun's java compiler. + * Check if we can invoke Sun's Java compiler. * * @return true if it is possible, false otherwise */