Skip to content

Commit 57e134c

Browse files
Merge branch '6.0.x'
2 parents 1730efd + 67645b3 commit 57e134c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/src/main/java/org/springframework/security/config/annotation/web/configurers/SessionManagementConfigurer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ public SessionManagementConfigurer<H> sessionFixation(
324324

325325
/**
326326
* Controls the maximum number of sessions for a user. The default is to allow any
327-
* number of users.
327+
* number of sessions.
328328
* @param maximumSessions the maximum number of sessions for a user
329329
* @return the {@link SessionManagementConfigurer} for further customizations
330330
*/

docs/modules/ROOT/pages/servlet/architecture.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Assuming that no other `SecurityFilterChain` instances match, `SecurityFilterCha
149149
// FIXME: add link to pattern matching
150150

151151
Notice that `SecurityFilterChain~0~` has only three security `Filter` instances configured.
152-
However, `SecurityFilterChain~n~` has four security `Filter` instanes configured.
152+
However, `SecurityFilterChain~n~` has four security `Filter` instances configured.
153153
It is important to note that each `SecurityFilterChain` can be unique and can be configured in isolation.
154154
In fact, a `SecurityFilterChain` might have zero security `Filter` instances if the application wants Spring Security to ignore certain requests.
155155
// FIXME: add link to configuring multiple `SecurityFilterChain` instances

docs/modules/ROOT/pages/servlet/saml2/login/overview.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ To achieve this, any interfaces or classes where Spring Security uses OpenSAML i
151151
This makes it possible for you to switch out OpenSAML for some other library or an unsupported version of OpenSAML.
152152

153153
As a natural outcome of these two goals, Spring Security's SAML API is quite small relative to other modules.
154-
Instead, such classes as `OpenSamlAuthenticationRequestFactory` and `OpenSamlAuthenticationProvider` expose `Converter` implementationss that customize various steps in the authentication process.
154+
Instead, such classes as `OpenSamlAuthenticationRequestFactory` and `OpenSamlAuthenticationProvider` expose `Converter` implementations that customize various steps in the authentication process.
155155

156156
For example, once your application receives a `SAMLResponse` and delegates to `Saml2WebSsoAuthenticationFilter`, the filter delegates to `OpenSamlAuthenticationProvider`:
157157

0 commit comments

Comments
 (0)