From 14e0e2dfb3bfb2b1161b9b44bf94c3ec01b62c3d Mon Sep 17 00:00:00 2001 From: Junhyunny Date: Fri, 15 Dec 2023 12:15:42 +0900 Subject: [PATCH] Fix typo in Authorize HTTP Requests' Doc Page --- .../pages/servlet/authorization/authorize-http-requests.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc b/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc index 40dc8b0789d..e86e7698bea 100644 --- a/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc +++ b/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc @@ -737,7 +737,7 @@ SecurityFilterChain web(HttpSecurity http) throws Exception { .dispatcherTypeMatchers(FORWARD, ERROR).permitAll() // <2> .requestMatchers("/static/**", "/signup", "/about").permitAll() // <3> .requestMatchers("/admin/**").hasRole("ADMIN") // <4> - .requestMatchers("/db/**").access(allOf(hasAuthority('db'), hasRole('ADMIN'))) // <5> + .requestMatchers("/db/**").access(allOf(hasAuthority("db"), hasRole("ADMIN"))) // <5> .anyRequest().denyAll() // <6> );