Skip to content

Commit 92352a7

Browse files
committed
Javadoc
1 parent 6cbfdca commit 92352a7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/io/input/BOMInputStream.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
* <p>
4949
* To build an instance, see {@link Builder}.
5050
* </p>
51-
* <h2>Example 1 - Detect and exclude a UTF-8 BOM</h2>
51+
* <h2>Example 1 - Detecting and excluding a UTF-8 BOM</h2>
5252
*
5353
* <pre>
5454
* BOMInputStream bomIn = BOMInputStream.builder().setInputStream(in).get();
@@ -57,7 +57,7 @@
5757
* }
5858
* </pre>
5959
*
60-
* <h2>Example 2 - Detect a UTF-8 BOM (but don't exclude it)</h2>
60+
* <h2>Example 2 - Detecting a UTF-8 BOM without excluding it</h2>
6161
*
6262
* <pre>
6363
* boolean include = true;
@@ -70,7 +70,7 @@
7070
* }
7171
* </pre>
7272
*
73-
* <h2>Example 3 - Detect Multiple BOMs</h2>
73+
* <h2>Example 3 - Detecting Multiple BOMs</h2>
7474
*
7575
* <pre>
7676
* BOMInputStream bomIn = BOMInputStream.builder()

0 commit comments

Comments
 (0)