Skip to content

Commit 475a532

Browse files
mengelbrechtjzheaux
authored andcommitted
Fix typo 'properites' in documentation
Fixes gh-8095
1 parent d245b04 commit 475a532

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cas/src/main/java/org/springframework/security/cas/web/authentication/ServiceAuthenticationDetailsSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class ServiceAuthenticationDetailsSource implements
4747
// ===================================================================================================
4848

4949
/**
50-
* Creates an implementation that uses the specified ServiceProperites and the default
50+
* Creates an implementation that uses the specified ServiceProperties and the default
5151
* CAS artifactParameterName.
5252
*
5353
* @param serviceProperties The ServiceProperties to use to construct the serviceUrl.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public final T authenticationDetailsSource(
168168

169169
/**
170170
* Specifies the {@link AuthenticationSuccessHandler} to be used. The default is
171-
* {@link SavedRequestAwareAuthenticationSuccessHandler} with no additional properites
171+
* {@link SavedRequestAwareAuthenticationSuccessHandler} with no additional properties
172172
* set.
173173
*
174174
* @param successHandler the {@link AuthenticationSuccessHandler}.

core/src/main/java/org/springframework/security/authentication/jaas/JaasAuthenticationProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
* </property>
130130
* </pre>
131131
*
132-
* A configuration note: The JaasAuthenticationProvider uses the security properites
132+
* A configuration note: The JaasAuthenticationProvider uses the security properties
133133
* "login.config.url.X" to configure jaas. If you would like to customize the way Jaas
134134
* gets configured, create a subclass of this and override the
135135
* {@link #configureJaas(Resource)} method.

test/src/main/java/org/springframework/security/test/context/support/WithMockUserSecurityContextFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public SecurityContext createSecurityContext(WithMockUser withUser) {
4343
.username() : withUser.value();
4444
if (username == null) {
4545
throw new IllegalArgumentException(withUser
46-
+ " cannot have null username on both username and value properites");
46+
+ " cannot have null username on both username and value properties");
4747
}
4848

4949
List<GrantedAuthority> grantedAuthorities = new ArrayList<>();

0 commit comments

Comments
 (0)