From 6d37ca1808d3d39ff2a75482bdcd67980dd5d0ad Mon Sep 17 00:00:00 2001 From: Marcus Da Coregio Date: Tue, 2 May 2023 16:06:27 -0300 Subject: [PATCH] Fix code snippets in Authorize HttpServletRequest Closes gh-11522 --- .../ROOT/pages/servlet/authorization/authorize-requests.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/servlet/authorization/authorize-requests.adoc b/docs/modules/ROOT/pages/servlet/authorization/authorize-requests.adoc index 505773efca..1cc97bc13b 100644 --- a/docs/modules/ROOT/pages/servlet/authorization/authorize-requests.adoc +++ b/docs/modules/ROOT/pages/servlet/authorization/authorize-requests.adoc @@ -163,8 +163,9 @@ SecurityFilterChain web(HttpSecurity http) throws Exception { return http.build(); } ---- + .XML -[source,xml] +[source,xml,role="secondary"] ---- @@ -193,7 +194,7 @@ SecurityFilterChain web(HttpSecurity http) throws Exception { } ---- .XML -[source,xml] +[source,xml,role="secondary"] ----