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
The following commit(s) were added to refs/heads/master by this push: new 92352a75 Javadoc 92352a75 is described below commit 92352a75c0b85c93a083b4c9199e8cae0f050ee5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu May 18 17:16:23 2023 -0400 Javadoc --- src/main/java/org/apache/commons/io/input/BOMInputStream.java | 6 +++--- 1 file changed, 3 insertions(+), 3 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 0075caf7..7e45fe31 100644 --- a/src/main/java/org/apache/commons/io/input/BOMInputStream.java +++ b/src/main/java/org/apache/commons/io/input/BOMInputStream.java @@ -48,7 +48,7 @@ import org.apache.commons.io.build.AbstractStreamBuilder; * <p> * To build an instance, see {@link Builder}. * </p> - * <h2>Example 1 - Detect and exclude a UTF-8 BOM</h2> + * <h2>Example 1 - Detecting and excluding a UTF-8 BOM</h2> * * <pre> * BOMInputStream bomIn = BOMInputStream.builder().setInputStream(in).get(); @@ -57,7 +57,7 @@ import org.apache.commons.io.build.AbstractStreamBuilder; * } * </pre> * - * <h2>Example 2 - Detect a UTF-8 BOM (but don't exclude it)</h2> + * <h2>Example 2 - Detecting a UTF-8 BOM without excluding it</h2> * * <pre> * boolean include = true; @@ -70,7 +70,7 @@ import org.apache.commons.io.build.AbstractStreamBuilder; * } * </pre> * - * <h2>Example 3 - Detect Multiple BOMs</h2> + * <h2>Example 3 - Detecting Multiple BOMs</h2> * * <pre> * BOMInputStream bomIn = BOMInputStream.builder()