Browse Source

Fix typo in WebFlux reference docs

Eleftheria Stein 4 years ago
parent
commit
ba8a5b1d20
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/manual/src/docs/asciidoc/_includes/reactive/webflux.adoc

+ 1 - 1
docs/manual/src/docs/asciidoc/_includes/reactive/webflux.adoc

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