Skip to content

Commit 98a8467

Browse files
httpainjzheaux
authored andcommitted
Fix javadoc typo
1 parent e6ac975 commit 98a8467

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/src/main/java/org/springframework/security/web/authentication/HttpStatusEntryPoint.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public final class HttpStatusEntryPoint implements AuthenticationEntryPoint {
4040
/**
4141
* Creates a new instance.
4242
*
43-
* @param httpStatus the HttpSatus to set
43+
* @param httpStatus the HttpStatus to set
4444
*/
4545
public HttpStatusEntryPoint(HttpStatus httpStatus) {
4646
Assert.notNull(httpStatus, "httpStatus cannot be null");
@@ -51,4 +51,4 @@ public void commence(HttpServletRequest request, HttpServletResponse response,
5151
AuthenticationException authException) throws IOException, ServletException {
5252
response.setStatus(httpStatus.value());
5353
}
54-
}
54+
}

0 commit comments

Comments
 (0)