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-io.git
commit 7eefcb24fe5ccc42f5a72738ddcfe5051893b21b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Apr 4 16:51:11 2025 -0400 Javadoc --- src/main/java/org/apache/commons/io/input/BOMInputStream.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/io/input/BOMInputStream.java b/src/main/java/org/apache/commons/io/input/BOMInputStream.java index 95177578d..3500eba72 100644 --- a/src/main/java/org/apache/commons/io/input/BOMInputStream.java +++ b/src/main/java/org/apache/commons/io/input/BOMInputStream.java @@ -312,7 +312,7 @@ public BOMInputStream(final InputStream delegate, final ByteOrderMark... boms) { } /** - * Finds a BOM with the configured bytes in {@code bomList}. + * Finds a ByteOrderMark with the configured bytes in {@code bomList}. * * @return The matched BOM or null if none matched. */ @@ -321,7 +321,7 @@ private ByteOrderMark find() { } /** - * Gets the BOM (Byte Order Mark). + * Gets the ByteOrderMark (Byte Order Mark). * * @return The BOM or null if none matched. * @throws IOException