Skip to content

Commit 62c07b0

Browse files
authored
Merge pull request #412 from joshstewart/patch-1
Fix small javascript typo
2 parents 0810f13 + 3988067 commit 62c07b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc_source/urls-tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Create a Lambda function with a function URL endpoint using a \.zip file archive
5353

5454
```
5555
exports.handler = async (event) => {
56-
let body = JSON.parse(event.body)
56+
let body = JSON.parse(event.body);
5757
const product = body.num1 * body.num2;
5858
const response = {
5959
statusCode: 200,
@@ -131,7 +131,7 @@ Resources:
131131
Code:
132132
ZipFile: |
133133
exports.handler = async (event) => {
134-
let body = JSON.parse(event.body)
134+
let body = JSON.parse(event.body);
135135
const product = body.num1 * body.num2;
136136
const response = {
137137
statusCode: 200,
@@ -192,4 +192,4 @@ You can now delete the resources that you created for this tutorial, unless you
192192

193193
1. Choose **Actions**, then choose **Delete**\.
194194

195-
1. Choose **Delete**\.
195+
1. Choose **Delete**\.

0 commit comments

Comments
 (0)