Skip to content

Commit 9132251

Browse files
committed
Javadoc
1 parent df3e271 commit 9132251

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/commons/lang3/concurrent/TimedSemaphore.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,10 +255,10 @@ private TimedSemaphore(final Builder builder) {
255255
/**
256256
* Constructs a new instance of {@link TimedSemaphore} and initializes it with the given time period and the limit.
257257
*
258-
* @param timePeriod the time period
259-
* @param timeUnit the unit for the period
260-
* @param limit the limit for the semaphore
261-
* @throws IllegalArgumentException if the period is less or equals 0
258+
* @param timePeriod the time period.
259+
* @param timeUnit the unit for the period.
260+
* @param limit the limit for the semaphore.
261+
* @throws IllegalArgumentException if the period is less or equals 0.
262262
*/
263263
public TimedSemaphore(final long timePeriod, final TimeUnit timeUnit, final int limit) {
264264
this(null, timePeriod, timeUnit, limit);

0 commit comments

Comments
 (0)