From b6363922e79363ef0912b6160ca469c790b56f72 Mon Sep 17 00:00:00 2001 From: Habin Song <83588265+boulce@users.noreply.github.com> Date: Wed, 31 Jan 2024 18:09:40 +0900 Subject: [PATCH] Update session-management.adoc lambda expression typo. I changed '(session) - session' to '(session) -> session' --- .../ROOT/pages/servlet/authentication/session-management.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc b/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc index f9434d38264..f269c960bc6 100644 --- a/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc +++ b/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc @@ -788,7 +788,7 @@ Java:: @Bean public SecurityFilterChain filterChain(HttpSecurity http) { http - .sessionManagement((session) - session + .sessionManagement((session) -> session .sessionFixation((sessionFixation) -> sessionFixation .newSession() )