We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cbfdca commit 92352a7Copy full SHA for 92352a7
1 file changed
src/main/java/org/apache/commons/io/input/BOMInputStream.java
@@ -48,7 +48,7 @@
48
* <p>
49
* To build an instance, see {@link Builder}.
50
* </p>
51
- * <h2>Example 1 - Detect and exclude a UTF-8 BOM</h2>
+ * <h2>Example 1 - Detecting and excluding a UTF-8 BOM</h2>
52
*
53
* <pre>
54
* BOMInputStream bomIn = BOMInputStream.builder().setInputStream(in).get();
@@ -57,7 +57,7 @@
57
* }
58
* </pre>
59
60
- * <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>
61
62
63
* boolean include = true;
@@ -70,7 +70,7 @@
70
71
72
73
- * <h2>Example 3 - Detect Multiple BOMs</h2>
+ * <h2>Example 3 - Detecting Multiple BOMs</h2>
74
75
76
* BOMInputStream bomIn = BOMInputStream.builder()
0 commit comments