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
commit 656632530430be1d09523ce10dcb8ff8e190f6cb Author: Gary Gregory <[email protected]> AuthorDate: Fri Nov 7 21:08:34 2025 -0500 Javadoc --- .../apache/commons/jexl3/scripting/JexlScriptEngineFactory.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/scripting/JexlScriptEngineFactory.java b/src/main/java/org/apache/commons/jexl3/scripting/JexlScriptEngineFactory.java index a5958c6a..1f0b5f7c 100644 --- a/src/main/java/org/apache/commons/jexl3/scripting/JexlScriptEngineFactory.java +++ b/src/main/java/org/apache/commons/jexl3/scripting/JexlScriptEngineFactory.java @@ -30,10 +30,12 @@ import org.apache.commons.jexl3.parser.StringParser; * Implements the JEXL ScriptEngineFactory for JSF-223. * <p> * Supports the following:<br> - * Language short names: "JEXL", "Jexl", "jexl", "JEXL2", "Jexl2", "jexl2", "JEXL3", "Jexl3", "jexl3" <br> - * File Extensions: ".jexl", ".jexl2", ".jexl3"<br> - * "jexl3" etc. were added for engineVersion="3.0". * </p> + * <ul> + * <li>Language short names: "JEXL", "Jexl", "jexl", "JEXL2", "Jexl2", "jexl2", "JEXL3", "Jexl3", "jexl3"</li> + * <li>File Extensions: ".jexl", ".jexl2", ".jexl3"</li> + * <li>"jexl3" etc. were added for engineVersion="3.0"</li> + * </ul> * <p> * See * <a href="https://java.sun.com/javase/6/docs/api/javax/script/package-summary.html">Java Scripting API</a>
