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-lang.git
commit ce5522f60dc87fb1b1ee115427519ebe1d33760f Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 17 10:48:51 2023 -0400 Fix spelling --- src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java index 0abb740d6..57bfe286f 100644 --- a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java +++ b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java @@ -754,7 +754,7 @@ public class ExceptionUtils { * Throws a checked exception without adding the exception to the throws * clause of the calling method. This method prevents throws clause * pollution and reduces the clutter of "Caused by" exceptions in the - * stacktrace. + * stack trace. * <p> * The use of this technique may be controversial, but exceedingly useful to * library developers.