From 6d9ee5a354dbef7c4e109882cd5b3e64a20d776f Mon Sep 17 00:00:00 2001 From: Hideaki Matsunami Date: Thu, 22 Oct 2020 13:55:19 +0900 Subject: [PATCH] add white space before strong notation. --- .../src/docs/asciidoc/_includes/servlet/appendix/faq.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/src/docs/asciidoc/_includes/servlet/appendix/faq.adoc b/docs/manual/src/docs/asciidoc/_includes/servlet/appendix/faq.adoc index cb690f54a5..196c3992fe 100644 --- a/docs/manual/src/docs/asciidoc/_includes/servlet/appendix/faq.adoc +++ b/docs/manual/src/docs/asciidoc/_includes/servlet/appendix/faq.adoc @@ -233,7 +233,7 @@ You cannot have two separate sessions at once. So if you log in again in another window or tab you are just reauthenticating in the same session. The server doesn't know anything about tabs, windows or browser instances. All it sees are HTTP requests and it ties those to a particular session according to the value of the JSESSIONID cookie that they contain. -When a user authenticates during a session, Spring Security's concurrent session control checks the number of__other authenticated sessions__ that they have. +When a user authenticates during a session, Spring Security's concurrent session control checks the number of __other authenticated sessions__ that they have. If they are already authenticated with the same session, then re-authenticating will have no effect.