Fix typo in WebFlux reference docs

This commit is contained in:
Eleftheria Stein 2021-06-17 15:39:33 +02:00
parent d4c3cea0e6
commit ba8a5b1d20
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ static class MultiSecurityHttpConfig {
.authorizeExchange((exchanges) -> exchanges
.anyExchange().authenticated()
)
.httpBasic(withDefaults()) <5>
.httpBasic(withDefaults()); <5>
return http.build();
}