Skip to content

Commit

Permalink
Fix typos in the @AsynchronousNonBlocking javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek committed Oct 3, 2024
1 parent ff5192c commit c966f05
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* When a method marked with this annotation is called, the method call is allowed to proceed on the original thread.
* It is assumed that the guarded method will, at some point, perform some non-blocking asynchronous operation(s),
* such as non-blocking IO, and that it synchronously returns a {@code CompletionStage}. It is further assumed that
* the completion of the asynchronos non-blocking operation(s) executed by the guarded method is followed by
* the completion of the asynchronous non-blocking operation(s) executed by the guarded method is followed by
* completion of the returned {@code CompletionStage}.
* <p>
* When the guarded method returns, a {@code CompletionStage} is returned to the caller and can be used to access
Expand All @@ -34,8 +34,7 @@
* <p>
* If a method marked with this annotation doesn't declare return type of {@code CompletionStage},
* {@link org.eclipse.microprofile.faulttolerance.exceptions.FaultToleranceDefinitionException
* FaultToleranceDefinitionException}
* occurs during deployment.
* FaultToleranceDefinitionException} occurs during deployment.
* <p>
* If a class is annotated with this annotation, all its methods are treated as if they were marked with this annotation.
* If one of the methods doesn't return {@code CompletionStage}, {@code FaultToleranceDefinitionException}
Expand Down

0 comments on commit c966f05

Please sign in to comment.