瀏覽代碼

Fix typo in WebFlux reference docs

Eleftheria Stein 4 年之前
父節點
當前提交
ba8a5b1d20
共有 1 個文件被更改,包括 1 次插入1 次删除
  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();
     }