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 7fb8eb730 Fix typos in comments 7fb8eb730 is described below commit 7fb8eb730ae03fc88245d5e6d25c24df5ce43e18 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Aug 21 09:15:50 2024 -0400 Fix typos in comments --- src/main/java/org/apache/commons/io/FileUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/io/FileUtils.java b/src/main/java/org/apache/commons/io/FileUtils.java index 3007954d9..2de1cc3cc 100644 --- a/src/main/java/org/apache/commons/io/FileUtils.java +++ b/src/main/java/org/apache/commons/io/FileUtils.java @@ -876,7 +876,7 @@ public class FileUtils { * * @param srcFile an existing file to copy, must not be {@code null}. * @param destFile the new file, must not be {@code null}. - * @param copyOptions options specifying how the copy should be done, for example {@link StandardCopyOption}.. + * @param copyOptions options specifying how the copy should be done, for example {@link StandardCopyOption}. * @throws NullPointerException if any of the given {@link File}s are {@code null}. * @throws FileNotFoundException if the source does not exist. * @throws IllegalArgumentException if source is not a file.