Parcourir la source

Fix logout code snippet for Kotlin: Corrected deleteCookies syntax

mskim il y a 8 mois
Parent
commit
0e3cfd1efb
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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 {
     logout {
-        deleteCookies = "our-custom-cookie"
+        deleteCookies("our-custom-cookie")
     }
 }
 ----