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 da749024 Javadoc spelling da749024 is described below commit da7490242f5d281e92c0ce80e22b282b1de0e3a5 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Dec 21 17:07:43 2023 -0500 Javadoc spelling --- src/main/java/org/apache/commons/io/IOUtils.java | 2 +- src/main/java/org/apache/commons/io/input/SwappedDataInputStream.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/io/IOUtils.java b/src/main/java/org/apache/commons/io/IOUtils.java index 81584a68..6b48d09f 100644 --- a/src/main/java/org/apache/commons/io/IOUtils.java +++ b/src/main/java/org/apache/commons/io/IOUtils.java @@ -3828,7 +3828,7 @@ public class IOUtils { * encoding and the specified line ending. * <p> * UTF-16 is written big-endian with no byte order mark. - * For little endian, use UTF-16LE. For a BOM, write it to the stream + * For little-endian, use UTF-16LE. For a BOM, write it to the stream * before calling this method. * </p> * diff --git a/src/main/java/org/apache/commons/io/input/SwappedDataInputStream.java b/src/main/java/org/apache/commons/io/input/SwappedDataInputStream.java index 9239b520..249baa87 100644 --- a/src/main/java/org/apache/commons/io/input/SwappedDataInputStream.java +++ b/src/main/java/org/apache/commons/io/input/SwappedDataInputStream.java @@ -26,7 +26,7 @@ import java.io.InputStream; import org.apache.commons.io.EndianUtils; /** - * DataInput for systems relying on little endian data formats. When read, values will be changed from little endian to + * DataInput for systems relying on little-endian data formats. When read, values will be changed from little-endian to * big endian formats for internal usage. * <p> * Provenance: Avalon Excalibur (IO)