aboutsummaryrefslogtreecommitdiffstats
path: root/poi
diff options
context:
space:
mode:
authorPJ Fanning <fanningpj@apache.org>2023-03-13 23:56:39 +0000
committerPJ Fanning <fanningpj@apache.org>2023-03-13 23:56:39 +0000
commit6c3aac7a28cd0a1e47cb52e2576eea788b365319 (patch)
tree3d1552fa0c4fbd2fe0ff12c791aabdade5856046 /poi
parent1927f67563387cab26ced62e022e44c61f74d532 (diff)
downloadpoi-6c3aac7a28cd0a1e47cb52e2576eea788b365319.tar.gz
poi-6c3aac7a28cd0a1e47cb52e2576eea788b365319.zip
javadoc typos
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1908363 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r--poi/src/main/java/org/apache/poi/util/ExceptionUtil.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/poi/src/main/java/org/apache/poi/util/ExceptionUtil.java b/poi/src/main/java/org/apache/poi/util/ExceptionUtil.java
index 5e41052ede..f5c0e15e16 100644
--- a/poi/src/main/java/org/apache/poi/util/ExceptionUtil.java
+++ b/poi/src/main/java/org/apache/poi/util/ExceptionUtil.java
@@ -17,7 +17,7 @@
package org.apache.poi.util;
/**
- * Utilitity methods for dealing with exceptions/throwables
+ * Utility methods for dealing with exceptions/throwables
*
* @since POI 5.2.4
*/
@@ -44,7 +44,7 @@ public class ExceptionUtil {
* Designed to be used in conjunction with {@link #isFatal(Throwable)}.
* This method should be used with care.
* <p>
- * The input throwable is thrown if it is an <code>Error</code> or <code>RuntimeException</code>.
+ * The input throwable is thrown if it is an <code>Error</code> or a <code>RuntimeException</code>.
* Otherwise, the method wraps the throwable in a RuntimeException and rethrows that.
* </p>
*