소스 검색

Fix javadoc typo

httpain 6 년 전
부모
커밋
98a8467e4c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      web/src/main/java/org/springframework/security/web/authentication/HttpStatusEntryPoint.java

+ 2 - 2
web/src/main/java/org/springframework/security/web/authentication/HttpStatusEntryPoint.java

@@ -40,7 +40,7 @@ public final class HttpStatusEntryPoint implements AuthenticationEntryPoint {
 	/**
 	 * Creates a new instance.
 	 *
-	 * @param httpStatus the HttpSatus to set
+	 * @param httpStatus the HttpStatus to set
 	 */
 	public HttpStatusEntryPoint(HttpStatus httpStatus) {
 		Assert.notNull(httpStatus, "httpStatus cannot be null");
@@ -51,4 +51,4 @@ public final class HttpStatusEntryPoint implements AuthenticationEntryPoint {
 			AuthenticationException authException) throws IOException, ServletException {
 		response.setStatus(httpStatus.value());
 	}
-}
+}