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 8e0ae202 Javadoc
8e0ae202 is described below
commit 8e0ae2026b48ccd3657ea1b1a87007b59acfba03
Author: Gary D. Gregory <[email protected]>
AuthorDate: Sun May 4 08:53:34 2025 -0400
Javadoc
---
src/main/java/org/apache/commons/jexl3/JexlContext.java | 2 +-
src/main/java/org/apache/commons/jexl3/JxltEngine.java | 2 +-
src/test/java/org/apache/commons/jexl3/junit/Asserter.java | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/commons/jexl3/JexlContext.java
b/src/main/java/org/apache/commons/jexl3/JexlContext.java
index 52e280a1..924cf4cb 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlContext.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlContext.java
@@ -156,7 +156,7 @@ public interface JexlContext {
*/
interface OptionsHandle {
/**
- * Retrieves the current set of options though the context.
+ * Gets the current set of options though the context.
* <p>
* This method will be called once at beginning of evaluation and an
interpreter private copy
* of the context handled JexlOptions instance used for the duration
of the execution;
diff --git a/src/main/java/org/apache/commons/jexl3/JxltEngine.java
b/src/main/java/org/apache/commons/jexl3/JxltEngine.java
index 71843a00..e484cd08 100644
--- a/src/main/java/org/apache/commons/jexl3/JxltEngine.java
+++ b/src/main/java/org/apache/commons/jexl3/JxltEngine.java
@@ -141,7 +141,7 @@ public abstract class JxltEngine {
Object evaluate(JexlContext context);
/**
- * Retrieves this expression's source expression.
+ * Gets this expression's source expression.
* <p>
* If this expression was prepared, this allows to retrieve the
* original expression that lead to it.</p>
diff --git a/src/test/java/org/apache/commons/jexl3/junit/Asserter.java
b/src/test/java/org/apache/commons/jexl3/junit/Asserter.java
index 7e985377..40c676ab 100644
--- a/src/test/java/org/apache/commons/jexl3/junit/Asserter.java
+++ b/src/test/java/org/apache/commons/jexl3/junit/Asserter.java
@@ -114,7 +114,7 @@ public class Asserter {
}
/**
- * Retrieves the underlying JEXL context.
+ * Gets the underlying JEXL context.
* @return the JEXL context
*/
public JexlContext getContext() {
@@ -122,7 +122,7 @@ public class Asserter {
}
/**
- * Retrieves the underlying JEXL engine.
+ * Gets the underlying JEXL engine.
* @return the JEXL engine
*/
public JexlEngine getEngine() {