Skip to content

Commit a8d76b9

Browse files
Hitesh BoinpallyHitesh Boinpally
Hitesh Boinpally
authored and
Hitesh Boinpally
committed
Couple aesthetic changes
* Added new line to app/index.js and __main__.py * Fixed typo in README
1 parent 692c93c commit a8d76b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

aws-py-apigatewayv2-http-api-quickcreate/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# AWS API Gateway V2 HTTP API Quickstart
44

5-
Set up a simple HTTP API using AWS API Gateway V2. The API executes a simple Lambda with function
5+
Set up a simple HTTP API using AWS API Gateway V2. The API executes a simple Lambda function
66
found in `/app/index.js`.
77

88
## Prerequisites

aws-py-apigatewayv2-http-api-quickcreate/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545
target=lambda_function.invoke_arn)
4646

4747
# Export the API endpoint for easy access
48-
pulumi.export("endpoint", apigw.api_endpoint)
48+
pulumi.export("endpoint", apigw.api_endpoint)

aws-py-apigatewayv2-http-api-quickcreate/app/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ exports.handler = async function(event, context) {
44
statusCode: 200,
55
body: "Hello, Pulumi!"
66
};
7-
}
7+
}

0 commit comments

Comments
 (0)