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 f791f23b Javadoc and comments
f791f23b is described below

commit f791f23b655126c43b184cdfe133473d71dea5d2
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 21 15:37:00 2025 -0500

    Javadoc and comments
---
 src/main/java/org/apache/commons/jexl3/JexlArithmetic.java            | 4 ++--
 src/main/java/org/apache/commons/jexl3/JexlFeatures.java              | 2 +-
 .../org/apache/commons/jexl3/internal/introspection/ClassMap.java     | 2 +-
 .../apache/commons/jexl3/internal/introspection/ListSetExecutor.java  | 2 +-
 .../apache/commons/jexl3/internal/introspection/MapSetExecutor.java   | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java 
b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
index f62d1e5c..5a50e771 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
@@ -1335,8 +1335,8 @@ 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
-     * 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
+     * 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>
      *
      * @param original the original number.
diff --git a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java 
b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
index f3964538..548b1ccd 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
@@ -548,7 +548,7 @@ public final class JexlFeatures {
     /**
      * Sets whether looping constructs are enabled.
      * <p>
-     * When disabled, parsing a script/expression using syntactic looping 
constructs (for,while)
+     * When disabled, parsing a script/expression using syntactic looping 
constructs (for, while)
      * will throw a parsing exception.
      * </p>
      * @param flag true to enable, false to disable
diff --git 
a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java 
b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java
index 5f3d903e..324ace00 100644
--- 
a/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java
+++ 
b/src/main/java/org/apache/commons/jexl3/internal/introspection/ClassMap.java
@@ -189,7 +189,7 @@ final class ClassMap {
      * </p>
      * <p>
      * Since the invocation of the associated method is dynamic, there is no 
need (nor way) to differentiate between
-     * foo(int,int) and foo(Integer,Integer) since in practice only the latter 
form will be used through a call.
+     * foo(int, int) and foo(Integer, Integer) since in practice only the 
latter form will be used through a call.
      * This of course, applies to all 8 primitive types.
      * </p>
      * Uses ConcurrentMap since 3.0, marginally faster than 2.1 under 
contention.
diff --git 
a/src/main/java/org/apache/commons/jexl3/internal/introspection/ListSetExecutor.java
 
b/src/main/java/org/apache/commons/jexl3/internal/introspection/ListSetExecutor.java
index 11fc6ec1..8bf82c60 100644
--- 
a/src/main/java/org/apache/commons/jexl3/internal/introspection/ListSetExecutor.java
+++ 
b/src/main/java/org/apache/commons/jexl3/internal/introspection/ListSetExecutor.java
@@ -36,7 +36,7 @@ public final class ListSetExecutor extends 
AbstractExecutor.Set {
      * @param is the introspector
      * @param clazz the class to find the get method from
      * @param identifier the key to use as an argument to the get method
-     * @param value the value to use as argument in list.put(key,value)
+     * @param value the value to use as argument in list.put(key, value)
      * @return the executor if found, null otherwise
      */
     public static ListSetExecutor discover(final Introspector is,
diff --git 
a/src/main/java/org/apache/commons/jexl3/internal/introspection/MapSetExecutor.java
 
b/src/main/java/org/apache/commons/jexl3/internal/introspection/MapSetExecutor.java
index b73104f3..a4dbd637 100644
--- 
a/src/main/java/org/apache/commons/jexl3/internal/introspection/MapSetExecutor.java
+++ 
b/src/main/java/org/apache/commons/jexl3/internal/introspection/MapSetExecutor.java
@@ -31,7 +31,7 @@ public final class MapSetExecutor extends 
AbstractExecutor.Set {
      * @param is the introspector
      * @param clazz the class to find the set method from
      * @param identifier the key to use as an argument to the get method
-     * @param value the value to use as argument in map.put(key,value)
+     * @param value the value to use as argument in map.put(key, value)
      * @return the executor if found, null otherwise
      */
     public static MapSetExecutor discover(final Introspector is,

Reply via email to