소스 검색

Fix Error Message typo

Fixes gh-3953
Rob Winch 9 년 전
부모
커밋
764a4d8414
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      config/src/main/java/org/springframework/security/config/authentication/AuthenticationManagerFactoryBean.java

+ 1 - 1
config/src/main/java/org/springframework/security/config/authentication/AuthenticationManagerFactoryBean.java

@@ -40,7 +40,7 @@ import java.util.Arrays;
 public class AuthenticationManagerFactoryBean implements
 		FactoryBean<AuthenticationManager>, BeanFactoryAware {
 	private BeanFactory bf;
-	public static final String MISSING_BEAN_ERROR_MESSAGE = "Did you forget to add a gobal <authentication-manager> element "
+	public static final String MISSING_BEAN_ERROR_MESSAGE = "Did you forget to add a global <authentication-manager> element "
 			+ "to your configuration (with child <authentication-provider> elements)? Alternatively you can use the "
 			+ "authentication-manager-ref attribute on your <http> and <global-method-security> elements.";