浏览代码

Fix typo in the doc in 5.7 Multiple HttpSecurity

Chaouki Dhib 8 年之前
父节点
当前提交
a88035196a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/manual/src/docs/asciidoc/index.adoc

+ 1 - 1
docs/manual/src/docs/asciidoc/index.adoc

@@ -944,7 +944,7 @@ public BCryptPasswordEncoder passwordEncoder() {
 
 === Multiple HttpSecurity
 
-We can configure multiple HttpSecurity instances just as we can have multiple `<http>` blocks. The key is to extend the `WebSecurityConfigurationAdapter` multiple times. For example, the following is an example of having a different configuration for URL's that start with `/api/`.
+We can configure multiple HttpSecurity instances just as we can have multiple `<http>` blocks. The key is to extend the `WebSecurityConfigurerAdapter` multiple times. For example, the following is an example of having a different configuration for URL's that start with `/api/`.
 
 [source,java]
 ----