소스 검색

SEC-2931: Fix CsrfFilter Javadoc

Rob Winch 10 년 전
부모
커밋
00042ff70b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      web/src/main/java/org/springframework/security/web/csrf/CsrfFilter.java

+ 1 - 1
web/src/main/java/org/springframework/security/web/csrf/CsrfFilter.java

@@ -48,7 +48,7 @@ import org.springframework.web.filter.OncePerRequestFilter;
  * Typically the {@link CsrfTokenRepository} implementation chooses to store the
  * {@link CsrfToken} in {@link HttpSession} with
  * {@link HttpSessionCsrfTokenRepository}. This is preferred to storing the
- * token in a cookie which.
+ * token in a cookie which can be modified by a client.
  * </p>
  *
  * @author Rob Winch