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 36995cca Normalize setter Javadoc 36995cca is described below commit 36995cca0f86ab8ad9491e6a18a283d668f75015 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 07:07:14 2023 -0400 Normalize setter Javadoc --- src/main/java/org/apache/commons/io/FileUtils.java | 2 +- src/main/java/org/apache/commons/io/output/CountingOutputStream.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/io/FileUtils.java b/src/main/java/org/apache/commons/io/FileUtils.java index 80d100f1..74993ede 100644 --- a/src/main/java/org/apache/commons/io/FileUtils.java +++ b/src/main/java/org/apache/commons/io/FileUtils.java @@ -2849,7 +2849,7 @@ public class FileUtils { } /** - * Set file lastModifiedTime, lastAccessTime and creationTime to match source file + * Sets file lastModifiedTime, lastAccessTime and creationTime to match source file * * @param sourceFile The source file to query. * @param targetFile The target file or directory to set. diff --git a/src/main/java/org/apache/commons/io/output/CountingOutputStream.java b/src/main/java/org/apache/commons/io/output/CountingOutputStream.java index 5be3721e..3b2006f7 100644 --- a/src/main/java/org/apache/commons/io/output/CountingOutputStream.java +++ b/src/main/java/org/apache/commons/io/output/CountingOutputStream.java @@ -87,7 +87,7 @@ public class CountingOutputStream extends ProxyOutputStream { } /** - * Set the byte count back to 0. + * Sets the byte count back to 0. * <p> * NOTE: This method is an alternative for {@code resetCount()}. * It was added because that method returns an integer which will @@ -104,7 +104,7 @@ public class CountingOutputStream extends ProxyOutputStream { } /** - * Set the byte count back to 0. + * Sets the byte count back to 0. * <p> * NOTE: From v1.3 this method throws an ArithmeticException if the * count is greater than can be expressed by an {@code int}.