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 6b81434a Fix Javadoc @link
6b81434a is described below
commit 6b81434a7343dc841b2b0bf968d15531fba9cfd8
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Dec 3 06:31:29 2025 -0500
Fix Javadoc @link
---
src/main/java/org/apache/commons/jexl3/JexlOptions.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/jexl3/JexlOptions.java
b/src/main/java/org/apache/commons/jexl3/JexlOptions.java
index d054e0c9..f7515891 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlOptions.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlOptions.java
@@ -265,7 +265,7 @@ public final class JexlOptions {
* <p>After a symbol is defined as local, dereferencing it outside its
* scope will trigger an error instead of seeking a global variable of the
* same name. To further reduce potential naming ambiguity errors,
- * global variables (ie non-local) must be declared to be assigned (@link
JexlContext#has(String) )
+ * global variables (ie non-local) must be declared to be assigned {@link
JexlContext#has(String)}
* when this flag is on; attempting to set an undeclared global variables
will
* raise an error.
* @return true if lexical shading is applied, false otherwise