Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 17, 2023
1 parent 249744f commit c744bd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/jexl3/JexlException.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public JexlException(final JexlNode node, final String msg, final Throwable caus
* @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);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/jexl3/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit c744bd2

Please sign in to comment.