Skip to content

Commit

Permalink
Merge branch '6.0.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusdacoregio committed Apr 19, 2023
2 parents dd14bbb + e3cc8d1 commit e57e8b3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/modules.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Where a module depends on another Spring Security module, the non-optional depen

[[spring-security-core]]
== Core -- `spring-security-core.jar`
This module contains core authentication and access-contol classes and interfaces, remoting support, and basic provisioning APIs.
This module contains core authentication and access-control classes and interfaces, remoting support, and basic provisioning APIs.
It is required by any application that uses Spring Security.
It supports standalone applications, remote clients, method (service layer) security, and JDBC user provisioning.
It contains the following top-level packages:
Expand Down Expand Up @@ -277,7 +277,7 @@ This is the basis of the Spring Security integration.
This module contains support for testing with Spring Security.

[[spring-security-taglibs]]
== Taglibs -- `spring-secuity-taglibs.jar`
== Taglibs -- `spring-security-taglibs.jar`
Provides Spring Security's JSP tag implementations.

.Taglib Dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ public void match(MvcResult result) {

/**
* Allows for any validating the authentication with arbitrary assertions
* @param assesrtAuthentication the Consumer which validates the authentication
* @param assertAuthentication the Consumer which validates the authentication
* @return the AuthenticatedMatcher to perform additional assertions
*/
public AuthenticatedMatcher withAuthentication(Consumer<Authentication> assesrtAuthentication) {
this.assertAuthentication = assesrtAuthentication;
public AuthenticatedMatcher withAuthentication(Consumer<Authentication> assertAuthentication) {
this.assertAuthentication = assertAuthentication;
return this;
}

Expand Down

0 comments on commit e57e8b3

Please sign in to comment.