File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/apache/commons/lang3/concurrent Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments