Browse Source

Fix logout code snippet for Kotlin: Corrected deleteCookies syntax

mskim 8 months ago
parent
commit
0e3cfd1efb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/modules/ROOT/pages/servlet/authentication/logout.adoc

+ 1 - 1
docs/modules/ROOT/pages/servlet/authentication/logout.adoc

@@ -226,7 +226,7 @@ Kotlin::
 ----
 ----
 http {
 http {
     logout {
     logout {
-        deleteCookies = "our-custom-cookie"
+        deleteCookies("our-custom-cookie")
     }
     }
 }
 }
 ----
 ----