Skip to content

Commit

Permalink
Javadoc formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jhalterman committed Dec 4, 2021
1 parent e4795dc commit 3560969
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/main/java/dev/failsafe/RateLimiter.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
* <li>{@link #tryAcquirePermit(Duration)}</li>
* <li>{@link #tryAcquirePermits(int, Duration)}</li>
* </ul>
* </p>
* <p>
* The methods that return immediately include:
* <ul>
* <li>{@link #tryAcquirePermit()}</li>
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/dev/failsafe/RateLimiterConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@

import java.time.Duration;

/**
* Configuration for a {@link RateLimiter}.
*
* @param <R> result type
* @author Jonathan Halterman
*/
public class RateLimiterConfig<R> extends PolicyConfig<R> {
// Smoothing
Duration maxRate;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/dev/failsafe/package-info.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Core Failsafe APIs for performing failsafe executions.
* APIs for performing failsafe executions.
* <p>
* {@link dev.failsafe.Failsafe} is the entry point for the library. See {@link dev.failsafe.FailsafeExecutor}
* for execution options.
Expand Down

0 comments on commit 3560969

Please sign in to comment.