浏览代码

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();
     }