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-lang.git

commit 913225106ac80fdf01e5b0bbfe42991d424f2642
Author: Gary D. Gregory <[email protected]>
AuthorDate: Tue Oct 14 16:17:09 2025 -0400

    Javadoc
---
 .../java/org/apache/commons/lang3/concurrent/TimedSemaphore.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/lang3/concurrent/TimedSemaphore.java 
b/src/main/java/org/apache/commons/lang3/concurrent/TimedSemaphore.java
index 3960c64ba..3c28843dd 100644
--- a/src/main/java/org/apache/commons/lang3/concurrent/TimedSemaphore.java
+++ b/src/main/java/org/apache/commons/lang3/concurrent/TimedSemaphore.java
@@ -255,10 +255,10 @@ private TimedSemaphore(final Builder builder) {
     /**
      * Constructs a new instance of {@link TimedSemaphore} and initializes it 
with the given time period and the limit.
      *
-     * @param timePeriod the time period
-     * @param timeUnit   the unit for the period
-     * @param limit      the limit for the semaphore
-     * @throws IllegalArgumentException if the period is less or equals 0
+     * @param timePeriod the time period.
+     * @param timeUnit   the unit for the period.
+     * @param limit      the limit for the semaphore.
+     * @throws IllegalArgumentException if the period is less or equals 0.
      */
     public TimedSemaphore(final long timePeriod, final TimeUnit timeUnit, 
final int limit) {
         this(null, timePeriod, timeUnit, limit);

Reply via email to