Skip to content

Commit cb7fbc0

Browse files
Junhyunnyjzheaux
authored andcommitted
Fix typo in Authorize HTTP Requests' Doc Page
1 parent 8a34e32 commit cb7fbc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ SecurityFilterChain web(HttpSecurity http) throws Exception {
737737
.dispatcherTypeMatchers(FORWARD, ERROR).permitAll() // <2>
738738
.requestMatchers("/static/**", "/signup", "/about").permitAll() // <3>
739739
.requestMatchers("/admin/**").hasRole("ADMIN") // <4>
740-
.requestMatchers("/db/**").access(allOf(hasAuthority('db'), hasRole('ADMIN'))) // <5>
740+
.requestMatchers("/db/**").access(allOf(hasAuthority("db"), hasRole("ADMIN"))) // <5>
741741
.anyRequest().denyAll() // <6>
742742
);
743743

0 commit comments

Comments
 (0)