Skip to content

Commit 8edff03

Browse files
committed
Fixed typo in javadocs.
Closes failsafe-lib#338
1 parent 4a51122 commit 8edff03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/main/java/dev/failsafe/Timeout.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* handlers can be used to handle a timeout being exceeded or not.
3636
* </p>
3737
* <p>Note: {@link TimeoutBuilder#withInterrupt() interruption} will have no effect when performing an {@link
38-
* FailsafeExecutor#getAsyncExecution(AsyncRunnable) async execution} since the async thread is unkown to Failsafe.</p>
38+
* FailsafeExecutor#getAsyncExecution(AsyncRunnable) async execution} since the async thread is unknown to Failsafe.</p>
3939
* <p>
4040
* This class is threadsafe.
4141
* </p>

core/src/main/java/dev/failsafe/TimeoutBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public Timeout<R> build() {
5757
* Note: Only configure interrupts if the code being executed is designed to be interrupted.
5858
* <p>
5959
* <p>Note: interruption will have no effect when performing an {@link
60-
* FailsafeExecutor#getAsyncExecution(AsyncRunnable) async execution} since the async thread is unkown to
60+
* FailsafeExecutor#getAsyncExecution(AsyncRunnable) async execution} since the async thread is unknown to
6161
* Failsafe.</p>
6262
*/
6363
public TimeoutBuilder<R> withInterrupt() {

0 commit comments

Comments
 (0)