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 7e3d46d Correction in typo error in javadocs (#276)
7e3d46d is described below
commit 7e3d46d21d6dea98ed34e97e6f40a085a75d0451
Author: Niranjan Ghule <[email protected]>
AuthorDate: Thu Sep 23 23:02:17 2021 +0530
Correction in typo error in javadocs (#276)
Corrected typo error in javadocs for method convertFileCollectionToFileArray
---
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 ab48520..fee5569 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -488,7 +488,7 @@ public class FileUtils {
}
/**
- * Converts a Collection containing java.io.File instanced into array
+ * Converts a Collection containing java.io.File instances into array
* representation. This is to account for the difference between
* File.listFiles() and FileUtils.listFiles().
*