소스 검색

Fix minor typo.

David Eisner 5 년 전
부모
커밋
56f5242595
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/manual/src/docs/asciidoc/_includes/servlet/java-configuration/index.adoc

+ 1 - 1
docs/manual/src/docs/asciidoc/_includes/servlet/java-configuration/index.adoc

@@ -133,7 +133,7 @@ public class MvcWebApplicationInitializer extends
 Thus far our <<jc-hello-wsca,WebSecurityConfig>> only contains information about how to authenticate our users.
 How does Spring Security know that we want to require all users to be authenticated?
 How does Spring Security know we want to support form based authentication?
-Actually, there is an configuration class that is being invoked behind the scenes called `WebSecurityConfigurerAdapter`.
+Actually, there is a configuration class that is being invoked behind the scenes called `WebSecurityConfigurerAdapter`.
 It has a method called `configure` with the following default implementation:
 
 [source,java]