From c966f0577002d782f9195b07a4607c24dbba22b9 Mon Sep 17 00:00:00 2001 From: Ladislav Thon Date: Wed, 2 Oct 2024 16:48:25 +0200 Subject: [PATCH] Fix typos in the @AsynchronousNonBlocking javadoc --- .../smallrye/faulttolerance/api/AsynchronousNonBlocking.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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}