Skip to content

Fix typo: paramters -> parameters. #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ public void setQueryStringParameters(Map<String, String> queryStringParameters)
* @param queryStringParameters The query string parameters that were part of the request
* @return APIGatewayProxyRequestEvent
*/
public APIGatewayProxyRequestEvent withQueryStringParamters(Map<String, String> queryStringParameters) {
public APIGatewayProxyRequestEvent withQueryStringParameters(Map<String, String> queryStringParameters) {
this.setQueryStringParameters(queryStringParameters);
return this;
}
Expand All @@ -952,10 +952,10 @@ public void setPathParameters(Map<String, String> pathParameters) {
}

/**
* @param pathParameters The path paramters that were part of the request
* @param pathParameters The path parameters that were part of the request
* @return APIGatewayProxyRequestEvent object
*/
public APIGatewayProxyRequestEvent withPathParamters(Map<String, String> pathParameters) {
public APIGatewayProxyRequestEvent withPathParameters(Map<String, String> pathParameters) {
this.setPathParameters(pathParameters);
return this;
}
Expand Down