Skip to content

Commit 9161cae

Browse files
committed
Javadoc typos
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1347571 13f79535-47bb-0310-9956-ffa450edef68
1 parent 83c5d51 commit 9161cae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/org/apache/commons/io/ByteOrderMark.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ public class ByteOrderMark implements Serializable {
4242
public static final ByteOrderMark UTF_16LE = new ByteOrderMark("UTF-16LE", 0xFF, 0xFE);
4343

4444
/**
45-
* UFT-32BE BOM (Big-Endian)
45+
* UTF-32BE BOM (Big-Endian)
4646
* @since 2.2
4747
*/
4848
public static final ByteOrderMark UTF_32BE = new ByteOrderMark("UTF-32BE", 0x00, 0x00, 0xFE, 0xFF);
4949

5050
/**
51-
* UTF-32LE BOM (Big-Endian)
51+
* UTF-32LE BOM (Little-Endian)
5252
* @since 2.2
5353
*/
5454
public static final ByteOrderMark UTF_32LE = new ByteOrderMark("UTF-32LE", 0xFF, 0xFE, 0x00, 0x00);

0 commit comments

Comments
 (0)