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 54c7f6d3 Javadoc
54c7f6d3 is described below
commit 54c7f6d37e9e6a891663412f611c83970080b3e2
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Mar 23 11:32:54 2026 -0700
Javadoc
---
src/main/java/org/apache/commons/jexl3/JexlException.java | 2 +-
src/main/java/org/apache/commons/jexl3/JexlOperator.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/jexl3/JexlException.java
b/src/main/java/org/apache/commons/jexl3/JexlException.java
index 76c4c31b..f63781fe 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlException.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlException.java
@@ -670,7 +670,7 @@ public class JexlException extends RuntimeException {
}
/**
- * The various type of variable issues.
+ * Enumerates types of variable issues.
*/
public enum VariableIssue {
diff --git a/src/main/java/org/apache/commons/jexl3/JexlOperator.java
b/src/main/java/org/apache/commons/jexl3/JexlOperator.java
index 29e66940..b41ca118 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlOperator.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlOperator.java
@@ -20,7 +20,7 @@ package org.apache.commons.jexl3;
import java.util.function.Consumer;
/**
- * The JEXL operators.
+ * Enumerates JEXL operators.
*
* These are the operators that are executed by JexlArithmetic methods.
*