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
commit 7d7f44815de6d28dfbf43c698962c0db3943310b Author: Gary Gregory <[email protected]> AuthorDate: Tue Jul 1 18:10:21 2025 -0400 Javadoc --- src/main/java/org/apache/commons/io/input/NullInputStream.java | 4 ++-- src/main/java/org/apache/commons/io/input/NullReader.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/io/input/NullInputStream.java b/src/main/java/org/apache/commons/io/input/NullInputStream.java index c64a9fafc..4d731c291 100644 --- a/src/main/java/org/apache/commons/io/input/NullInputStream.java +++ b/src/main/java/org/apache/commons/io/input/NullInputStream.java @@ -23,9 +23,9 @@ import java.io.InputStream; /** - * A light weight {@link InputStream} that emulates a stream of a specified size. + * A lightweight {@link InputStream} that emulates a stream of a specified size. * <p> - * This implementation provides a light weight object for testing with an {@link InputStream} where the contents don't matter. + * This implementation provides a lightweight object for testing with an {@link InputStream} where the contents don't matter. * </p> * <p> * One use case would be for testing the handling of large {@link InputStream} as it can emulate that scenario without the overhead of actually processing large diff --git a/src/main/java/org/apache/commons/io/input/NullReader.java b/src/main/java/org/apache/commons/io/input/NullReader.java index 3f20d5d69..d1fcf591d 100644 --- a/src/main/java/org/apache/commons/io/input/NullReader.java +++ b/src/main/java/org/apache/commons/io/input/NullReader.java @@ -23,10 +23,10 @@ import java.io.Reader; /** - * A functional, light weight {@link Reader} that emulates + * A functional, lightweight {@link Reader} that emulates * a reader of a specified size. * <p> - * This implementation provides a light weight + * This implementation provides a lightweight * object for testing with an {@link Reader} * where the contents don't matter. * </p>
