diff --git a/api/src/main/java/io/smallrye/faulttolerance/api/AsynchronousNonBlocking.java b/api/src/main/java/io/smallrye/faulttolerance/api/AsynchronousNonBlocking.java index bef0a9a8..e610015b 100644 --- a/api/src/main/java/io/smallrye/faulttolerance/api/AsynchronousNonBlocking.java +++ b/api/src/main/java/io/smallrye/faulttolerance/api/AsynchronousNonBlocking.java @@ -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}. *

* When the guarded method returns, a {@code CompletionStage} is returned to the caller and can be used to access @@ -34,8 +34,7 @@ *

* 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. *

* 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}