From 9cb5f035e79942baf7efeff0a23686a6ccdc6a61 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Sat, 23 Oct 2021 08:29:51 -0700 Subject: [PATCH] Fix typo See gh-20971 --- .../spring-boot-docs/src/docs/asciidoc/web/servlet.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/servlet.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/servlet.adoc index 3f508c7a5a..f58c911312 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/servlet.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/web/servlet.adoc @@ -597,7 +597,7 @@ If you want to change the `SameSite` attribute of your session cookie, you can u This property is supported by auto-configured Tomcat, Jetty and Undertow servers. It is also used to configure Spring Session servlet based `SessionRepository` beans. -For example, if you want your session cookie to have a `SameSite` attribute of `None`, you can add the following to you `application.properties` or `application.yaml` file: +For example, if you want your session cookie to have a `SameSite` attribute of `None`, you can add the following to your `application.properties` or `application.yaml` file: [source,yaml,indent=0,subs="verbatim",configprops,configblocks] ----