From 78dd219787c7087a4804c5b3a815ee1c614324a5 Mon Sep 17 00:00:00 2001 From: Radek Crlik Date: Sat, 11 Sep 2021 17:42:51 +0200 Subject: [PATCH] Fix misplaced comma in AOP doc See gh-27387 --- src/docs/asciidoc/core/core-aop.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/core/core-aop.adoc b/src/docs/asciidoc/core/core-aop.adoc index d4e4a9a6e7..a6412096e4 100644 --- a/src/docs/asciidoc/core/core-aop.adoc +++ b/src/docs/asciidoc/core/core-aop.adoc @@ -2830,7 +2830,7 @@ The corresponding Spring configuration is as follows: ---- -Notice that, for the time, being we assume that all business services are idempotent. If +Notice that, for the time being, we assume that all business services are idempotent. If this is not the case, we can refine the aspect so that it retries only genuinely idempotent operations, by introducing an `Idempotent` annotation and using the annotation to annotate the implementation of service operations, as the following example shows: