From e5faad5ea4ef1df86cdc4e05929e0aa763babebc Mon Sep 17 00:00:00 2001 From: Jackie Gleason Date: Mon, 28 Apr 2025 12:00:55 -0400 Subject: [PATCH] Docs don't show these as bullets because they are in a note block. Looking at the other code it should be like this. (#1810) --- .../src/main/antora/modules/ROOT/pages/api/advisors.adoc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/advisors.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/advisors.adoc index 405eb6088..4c6c7e89c 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/advisors.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/advisors.adoc @@ -75,9 +75,11 @@ The execution order of advisors in the chain is determined by the `getOrder()` m [NOTE] ==== The seeming contradiction between order and execution sequence is due to the stack-like nature of the advisor chain: -* An advisor with the highest precedence (lowest order value) is added to the top of the stack. -* It will be the first to process the request as the stack unwinds. -* It will be the last to process the response as the stack rewinds. + +- An advisor with the highest precedence (lowest order value) is added to the top of the stack. +- It will be the first to process the request as the stack unwinds. +- It will be the last to process the response as the stack rewinds. + ==== As a reminder, here are the semantics of the Spring `Ordered` interface: