This is an automated email from the ASF dual-hosted git repository. henrib 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 2e0e8e94 JEXL-410: Javadoc 2e0e8e94 is described below commit 2e0e8e940cbfb0feb146ccfec99abeacbb164972 Author: Henri Biestro <hbies...@cloudera.com> AuthorDate: Wed Oct 18 15:40:00 2023 +0200 JEXL-410: Javadoc --- src/main/java/org/apache/commons/jexl3/JexlFeatures.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java index 4ed1f8d7..56939d30 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java +++ b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java @@ -169,7 +169,7 @@ public final class JexlFeatures { * Creates a default features set suitable for basic scripting needs. * <p>Meant for legacy (before 3.3) scripting checks.</p> * <p>The following scripting features are enabled:</p> - * <lu> + * <ul> * <li>local variable {@link JexlFeatures#supportsLocalVar()}</li> * <li>side effect {@link JexlFeatures#supportsSideEffect()}</li> * <li>global side effect {@link JexlFeatures#supportsSideEffectGlobal()}</li> @@ -186,7 +186,7 @@ public final class JexlFeatures { * <li>namespace pragma {@link JexlFeatures#supportsNamespacePragma()}</li> * <li>import pragma {@link JexlFeatures#supportsImportPragma()}</li> * <li>pragma anywhere {@link JexlFeatures#supportsPragmaAnywhere()} </li> - * </lu> + * </ul> * @return a new instance of a default scripting features set * @since 3.3.1 */