Skip to content

Commit 907a90b

Browse files
committed
Fix typos - Singer -> Signer
1 parent 6ae0dd4 commit 907a90b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

codegen/src/main/java/software/amazon/awssdk/codegen/poet/auth/scheme/SigV4AuthSchemeCodegenKnowledgeIndex.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ private AuthSchemeCodegenMetadata sigV4AuthSchemeWithConstantOverrides(List<Auth
134134
}
135135

136136
/**
137-
* Returns a new list of singer properties with only those properties that use a constant value.
137+
* Returns a new list of signer properties with only those properties that use a constant value.
138138
*/
139139
private List<SignerPropertyValueProvider> filterSignerPropertiesWithConstantValues(
140140
List<SignerPropertyValueProvider> properties

services/polly/src/test/java/software/amazon/awssdk/services/polly/internal/presigner/DefaultPollyPresignerTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ void presign_requestLevelCredentials_honored() {
9090
}
9191

9292
@Test
93-
void presign_requestLevelSingerAndCredentials_honored() {
93+
void presign_requestLevelSignerAndCredentials_honored() {
9494
IdentityProvider<AwsCredentialsIdentity> requestCedentialsProvider = StaticCredentialsProvider.create(
9595
AwsBasicCredentials.create("akid2", "skid2")
9696
);

services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/plugins/S3OverrideAuthSchemePropertiesPlugin.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public void configureClient(SdkServiceClientConfiguration.Builder config) {
9999
if (addConfiguredProperties(option, params)) {
100100
AuthSchemeOption.Builder builder = option.toBuilder();
101101
identityProperties.forEach((k, v) -> putIdentityProperty(builder, k, v));
102-
signerProperties.forEach((k, v) -> putSingerProperty(builder, k, v));
102+
signerProperties.forEach((k, v) -> putSignerProperty(builder, k, v));
103103
result.add(builder.build());
104104
} else {
105105
result.add(option);
@@ -116,7 +116,7 @@ private <T> void putIdentityProperty(AuthSchemeOption.Builder builder, IdentityP
116116
}
117117

118118
@SuppressWarnings("unchecked")
119-
private <T> void putSingerProperty(AuthSchemeOption.Builder builder, SignerProperty<?> key, Object value) {
119+
private <T> void putSignerProperty(AuthSchemeOption.Builder builder, SignerProperty<?> key, Object value) {
120120
// Safe because of Builder#putSignerProperty
121121
builder.putSignerProperty((SignerProperty<T>) key, (T) value);
122122
}

0 commit comments

Comments
 (0)