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 b325618c7eb9148768f8798c7c894698c8dcb712 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Sep 19 22:01:02 2021 -0400 Javadoc nits. --- src/main/java/org/apache/commons/io/ThreadMonitor.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/io/ThreadMonitor.java b/src/main/java/org/apache/commons/io/ThreadMonitor.java index 897d445..0ef711f 100644 --- a/src/main/java/org/apache/commons/io/ThreadMonitor.java +++ b/src/main/java/org/apache/commons/io/ThreadMonitor.java @@ -45,7 +45,7 @@ class ThreadMonitor implements Runnable { private final Duration timeout; /** - * Start monitoring the current thread. + * Starts monitoring the current thread. * * @param timeout The timeout amount. or no timeout if the value is zero or less. * @return The monitor thread or {@code null} if the timeout amount is not greater than zero. @@ -55,7 +55,7 @@ class ThreadMonitor implements Runnable { } /** - * Start monitoring the specified thread. + * Starts monitoring the specified thread. * * @param thread The thread The thread to monitor * @param timeout The timeout amount. or no timeout if the value is zero or less. @@ -72,7 +72,7 @@ class ThreadMonitor implements Runnable { } /** - * Stop monitoring the specified thread. + * Stops monitoring the specified thread. * * @param thread The monitor thread, may be {@code null}. */ @@ -94,7 +94,7 @@ class ThreadMonitor implements Runnable { } /** - * Sleep until the specified timeout amount and then interrupt the thread being monitored. + * Sleeps until the specified timeout amount and then interrupt the thread being monitored. * * @see Runnable#run() */