From 5560c5342d09b119c37566767955d11e2830faa7 Mon Sep 17 00:00:00 2001 From: Simon Von Date: Fri, 10 Oct 2025 17:51:48 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=94=20Documentation=201.=20Correct=20t?= =?UTF-8?q?he=20org.springframework.security.config.annotation.web.LogoutD?= =?UTF-8?q?sl's=20property=20description?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Simon Von --- .../springframework/security/config/annotation/web/LogoutDsl.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/src/main/kotlin/org/springframework/security/config/annotation/web/LogoutDsl.kt b/config/src/main/kotlin/org/springframework/security/config/annotation/web/LogoutDsl.kt index 5bab4d41976..7fba48cd350 100644 --- a/config/src/main/kotlin/org/springframework/security/config/annotation/web/LogoutDsl.kt +++ b/config/src/main/kotlin/org/springframework/security/config/annotation/web/LogoutDsl.kt @@ -35,7 +35,7 @@ import jakarta.servlet.http.HttpSession * @since 5.3 * @property clearAuthentication whether the [SecurityContextLogoutHandler] should clear * the [Authentication] at the time of logout. - * @property clearAuthentication whether to invalidate the [HttpSession] at the time of logout. + * @property invalidateHttpSession whether to invalidate the [HttpSession] at the time of logout. * @property logoutUrl the URL that triggers log out to occur. * @property logoutRequestMatcher the [RequestMatcher] that triggers log out to occur. * @property logoutSuccessUrl the URL to redirect to after logout has occurred.