You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/01/12 20:28:10 UTC

[commons-io] branch master updated: Javadoc tweaks.

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 2564b70  Javadoc tweaks.
2564b70 is described below

commit 2564b7006523813a051cdfb1eef1b8871d7f2e39
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jan 12 15:28:05 2021 -0500

    Javadoc tweaks.
---
 src/main/java/org/apache/commons/io/file/PathUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/file/PathUtils.java b/src/main/java/org/apache/commons/io/file/PathUtils.java
index 69e8713..87f605a 100644
--- a/src/main/java/org/apache/commons/io/file/PathUtils.java
+++ b/src/main/java/org/apache/commons/io/file/PathUtils.java
@@ -808,7 +808,7 @@ public final class PathUtils {
     }
 
     /**
-     * Shorthand for {@code Files.readAttributes(path, BasicFileAttributes.class);}
+     * Shorthand for {@code Files.readAttributes(path, BasicFileAttributes.class)}
      *
      * @param path the path to read.
      * @return the path attributes.
@@ -820,7 +820,7 @@ public final class PathUtils {
     }
 
     /**
-     * Shorthand for {@code Files.readAttributes(path, BasicFileAttributes.class);} while wrapping {@link IOException}
+     * Shorthand for {@code Files.readAttributes(path, BasicFileAttributes.class)} while wrapping {@link IOException}
      * as {@link IllegalStateException}.
      *
      * @param path the path to read.