Skip to content

Commit 380a77c

Browse files
committed
awsGH-65 Fix "Paramters" typo
1 parent 9d36c53 commit 380a77c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/APIGatewayProxyRequestEvent.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ public void setQueryStringParameters(Map<String, String> queryStringParameters)
960960
* @param queryStringParameters The query string parameters that were part of the request
961961
* @return APIGatewayProxyRequestEvent
962962
*/
963-
public APIGatewayProxyRequestEvent withQueryStringParamters(Map<String, String> queryStringParameters) {
963+
public APIGatewayProxyRequestEvent withQueryStringParameters(Map<String, String> queryStringParameters) {
964964
this.setQueryStringParameters(queryStringParameters);
965965
return this;
966966
}
@@ -1003,10 +1003,10 @@ public void setPathParameters(Map<String, String> pathParameters) {
10031003
}
10041004

10051005
/**
1006-
* @param pathParameters The path paramters that were part of the request
1006+
* @param pathParameters The path parameters that were part of the request
10071007
* @return APIGatewayProxyRequestEvent object
10081008
*/
1009-
public APIGatewayProxyRequestEvent withPathParamters(Map<String, String> pathParameters) {
1009+
public APIGatewayProxyRequestEvent withPathParameters(Map<String, String> pathParameters) {
10101010
this.setPathParameters(pathParameters);
10111011
return this;
10121012
}

aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/ConfigEvent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public void setRuleParameters(String ruleParameters) {
114114
}
115115

116116
/**
117-
* @param ruleParameters String with rule paramters
117+
* @param ruleParameters String with rule parameters
118118
* @return ConfigEvent
119119
*/
120120
public ConfigEvent withRuleParameters(String ruleParameters) {

0 commit comments

Comments
 (0)