From a88035196aee33619c339feeb02d55e8b1b57013 Mon Sep 17 00:00:00 2001 From: Chaouki Dhib Date: Wed, 26 Jul 2017 16:52:31 +0200 Subject: [PATCH] Fix typo in the doc in 5.7 Multiple HttpSecurity --- docs/manual/src/docs/asciidoc/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/src/docs/asciidoc/index.adoc b/docs/manual/src/docs/asciidoc/index.adoc index 94c05725b8..219ee6479d 100644 --- a/docs/manual/src/docs/asciidoc/index.adoc +++ b/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 `` 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 `` 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] ----