Skip to content

Commit 6aa4fc2

Browse files
committed
Minor javadoc fixes
1 parent 7571996 commit 6aa4fc2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/main/java/dev/failsafe/event/ExecutionCompletedEvent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import dev.failsafe.ExecutionContext;
1919

2020
/**
21-
* Indicates an execution was completed.
21+
* Indicates an execution was completed or cancelled.
2222
*
2323
* @param <R> result type
2424
* @author Jonathan Halterman

core/src/main/java/dev/failsafe/event/ExecutionEvent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public int getExecutionCount() {
6060
}
6161

6262
/**
63-
* Returns the time that the initial execution started, else {code null} if an execution has not started yet.
63+
* Returns the time that the initial execution started, else {@code null} if an execution has not started yet.
6464
*/
6565
public Optional<Instant> getStartTime() {
6666
return Optional.ofNullable(context.getStartTime());

0 commit comments

Comments
 (0)