Skip to content
Open
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
4 changes: 2 additions & 2 deletions 06-serverless-by-example/02-a-serverless-todo-application.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Create a new file called `package.json` in the root of your servie with the foll

You can see that we've added two packages here.

THe firs one is [`aws-sdk`](https://www.npmjs.com/package/aws-sdk) which gives us access to work with AWS services (this is not necessary as Lambda functions automatically have access to the SDKs in the corresponding runtime language).
The first one is [`aws-sdk`](https://www.npmjs.com/package/aws-sdk) which gives us access to work with AWS services (this is not necessary as Lambda functions automatically have access to the SDKs in the corresponding runtime language).

Additionally we've added the [`uuid`](https://www.npmjs.com/package/uuid) package which will help us generate unique ids we can use as our `id` attribute for our todos.

Expand Down Expand Up @@ -624,7 +624,7 @@ Let's add the `delete` function definition to the `serverless.yml` file by nesti

```yml
delete:
handler: handlers.delete
handler: handler.delete
events:
- http: DELETE todos/{id}
```
Expand Down