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 bd0ff5320e9b9eae53d1137538bee2d7b33f87ac
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Sun Sep 19 21:58:27 2021 -0400

    Javadoc: End sentences in a period.
---
 src/main/java/org/apache/commons/io/ThreadMonitor.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/ThreadMonitor.java 
b/src/main/java/org/apache/commons/io/ThreadMonitor.java
index 79832b4..0aa6fdc 100644
--- a/src/main/java/org/apache/commons/io/ThreadMonitor.java
+++ b/src/main/java/org/apache/commons/io/ThreadMonitor.java
@@ -75,7 +75,7 @@ class ThreadMonitor implements Runnable {
     /**
      * Stop monitoring the specified thread.
      *
-     * @param thread The monitor thread, may be {@code null}
+     * @param thread The monitor thread, may be {@code null}.
      */
     static void stop(final Thread thread) {
         if (thread != null) {
@@ -116,7 +116,7 @@ class ThreadMonitor implements Runnable {
      * Read {@link Thread#sleep(long, int)}} for further interesting details.
      *
      * @param duration the sleep duration.
-     * @throws InterruptedException if interrupted
+     * @throws InterruptedException if interrupted.
      */
     private static void sleep(final Duration duration) throws 
InterruptedException {
         final Instant finishInstant = Instant.now().plus(duration);

Reply via email to