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 4afb45285e60b5fe519e66f0687c737b5d7ae210
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 13 09:34:07 2023 -0400

    Javadoc
---
 src/main/java/org/apache/commons/io/FileUtils.java | 22 +++++++++++++---------
 1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/FileUtils.java 
b/src/main/java/org/apache/commons/io/FileUtils.java
index 16d0d750..36aa2a27 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -1364,10 +1364,10 @@ public class FileUtils {
     }
 
     /**
-     * Calls {@link File#mkdirs()} and throws an {@link IOException} on 
failure.
-     * <p>
      * Creates all directories for a File object, including any necessary but 
nonexistent parent directories. If the {@code directory} already exists or is
      * null, nothing happens.
+     * <p>
+     * Calls {@link File#mkdirs()} and throws an {@link IOException} on 
failure.
      * </p>
      *
      * @param directory the receiver for {@code mkdirs()}. If the {@code 
directory} already exists or is null, nothing happens.
@@ -2321,8 +2321,10 @@ public class FileUtils {
     }
 
     /**
-     * Moves a directory to another directory. Creates all destination parent 
directories,
-     * including any necessary but nonexistent parent directories, if {@code 
createDestDir} is true.
+     * Moves a directory to another directory.
+     * <p> 
+     * If {@code createDestDir} is true, creates all destination parent 
directories, including any necessary but nonexistent parent directories.
+     * </p> 
      *
      * @param source the file to be moved.
      * @param destDir the destination file.
@@ -2404,8 +2406,10 @@ public class FileUtils {
     }
 
     /**
-     * Moves a file to a directory. Creates all destination parent directories,
-     * including any necessary but nonexistent parent directories, if {@code 
createDestDir} is true.
+     * Moves a file to a directory.
+     * <p> 
+     * If {@code createDestDir} is true, creates all destination parent 
directories, including any necessary but nonexistent parent directories.
+     * </p> 
      *
      * @param srcFile the file to be moved.
      * @param destDir the destination file.
@@ -2432,9 +2436,9 @@ public class FileUtils {
 
     /**
      * Moves a file or directory to a destination directory.
-     * <p>
-     * Creates all destination parent directories, including any necessary but 
nonexistent parent directories, if {@code createDestDir} is true.
-     * </p>
+     * <p> 
+     * If {@code createDestDir} is true, creates all destination parent 
directories, including any necessary but nonexistent parent directories.
+     * </p> 
      * <p>
      * When the destination is on another file system, do a "copy and delete".
      * </p>

Reply via email to