You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2018/05/18 17:42:12 UTC

commons-io git commit: FileUtils#forceMkdir: Minor fix in method javadoc (closes #60)

Repository: commons-io
Updated Branches:
  refs/heads/master 98f8e1a43 -> bc10af423


FileUtils#forceMkdir: Minor fix in method javadoc (closes #60)


Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/bc10af42
Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/bc10af42
Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/bc10af42

Branch: refs/heads/master
Commit: bc10af423f2eaef8cfffe1c3ff06956afa3dd371
Parents: 98f8e1a
Author: Koray Tugay <ko...@tugay.biz>
Authored: Thu May 17 21:36:53 2018 -0400
Committer: pascalschumacher <pa...@gmx.net>
Committed: Fri May 18 19:41:29 2018 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/io/FileUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-io/blob/bc10af42/src/main/java/org/apache/commons/io/FileUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/FileUtils.java b/src/main/java/org/apache/commons/io/FileUtils.java
index 9463f21..20e2463 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -2474,7 +2474,7 @@ public class FileUtils {
      * Makes a directory, including any necessary but nonexistent parent
      * directories. If a file already exists with specified name but it is
      * not a directory then an IOException is thrown.
-     * If the directory cannot be created (or does not already exist)
+     * If the directory cannot be created (or the file already exists but is not a directory)
      * then an IOException is thrown.
      *
      * @param directory directory to create, must not be {@code null}