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 c744bd26 Fix spelling c744bd26 is described below commit c744bd26da431c908d8e27906b659155ecce66cd Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 17 10:42:47 2023 -0400 Fix spelling --- src/main/java/org/apache/commons/jexl3/JexlException.java | 2 +- src/main/java/org/apache/commons/jexl3/package-info.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 0927b03e..a6f10ec6 100644 --- a/src/main/java/org/apache/commons/jexl3/JexlException.java +++ b/src/main/java/org/apache/commons/jexl3/JexlException.java @@ -77,7 +77,7 @@ public class JexlException extends RuntimeException { * @param node the node causing the error * @param msg the error message * @param cause the exception causing the error - * @param trace whether this exception has a stacktrace and can <em>not</em> be suppressed + * @param trace whether this exception has a stack trace and can <em>not</em> be suppressed */ protected JexlException(final JexlNode node, final String msg, final Throwable cause, final boolean trace) { super(msg != null ? msg : "", unwrap(cause), !trace, trace); diff --git a/src/main/java/org/apache/commons/jexl3/package-info.java b/src/main/java/org/apache/commons/jexl3/package-info.java index 27acf230..180b33eb 100644 --- a/src/main/java/org/apache/commons/jexl3/package-info.java +++ b/src/main/java/org/apache/commons/jexl3/package-info.java @@ -293,7 +293,7 @@ * </p> * <p> * {@link org.apache.commons.jexl3.JexlBuilder#debug(boolean)} - * makes stacktraces carried by JExlException more meaningful; in particular, these + * makes stack traces carried by JExlException more meaningful; in particular, these * traces will carry the exact caller location the Expression was created from. * </p> * <h3><a id="dynamic_configuration">Dynamic Configuration</a></h3>