From f37e0c6a1b005bafa780c309a11ab1c242588727 Mon Sep 17 00:00:00 2001 From: xuxiang Date: Sat, 12 Sep 2020 19:57:11 +0800 Subject: [PATCH] Fix typo regarding Ordered interface in core-aop.adoc Closes gh-25759 --- 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 f7daf85c760..3ef6e342279 100644 --- a/src/docs/asciidoc/core/core-aop.adoc +++ b/src/docs/asciidoc/core/core-aop.adoc @@ -1649,7 +1649,7 @@ join point, unless you specify otherwise, the order of execution is undefined. Y control the order of execution by specifying precedence. This is done in the normal Spring way by either implementing the `org.springframework.core.Ordered` interface in the aspect class or annotating it with the `@Order` annotation. Given two aspects, the -aspect returning the lower value from `Ordered.getValue()` (or the annotation value) has +aspect returning the lower value from `Ordered.getOrder()` (or the annotation value) has the higher precedence. [NOTE]