Skip to content

Commit 3996eec

Browse files
committed
fix docs
1 parent 6fd63d2 commit 3996eec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
- Run git clone https://github.com/ngneat/nx-serverless.git your-app-name
4242
- Run `npm install`
4343
- Run `npm run localstack`
44-
- Update the `environment` files based on your configuration.
44+
- Update the `environment` files based on your configuration
4545
- Run `npm run serve`
4646

4747
## About the App
@@ -80,7 +80,7 @@ The todos service is responsible for managing todos. A user has many todos. It e
8080
// Get user todos
8181
curl 'http://localhost:3005/dev/todos' --header 'Authorization: token TOKEN'
8282

83-
// Get single todo
83+
// Get a single todo
8484
curl 'http://localhost:3005/dev/todos/:id' --header 'Authorization: token TOKEN'
8585

8686
// Create a todo
@@ -91,7 +91,7 @@ curl --request POST 'http://localhost:3005/dev/todos' \
9191
}'
9292

9393
// Update a todo
94-
curl --request PUT 'http://localhost:3005/dev/todos/01G2HGJADWKDPKWHJAVZJ1QP9S' \
94+
curl --request PUT 'http://localhost:3005/dev/todos/:id' \
9595
--header 'Authorization: token TOKEN' \
9696
--data-raw '{
9797
"completed": true
@@ -137,7 +137,7 @@ npx nx workspace-generator model --name=tag --project=tags
137137

138138
- Visit [Serverless Documentation](https://www.serverless.com/framework/docs/) to learn more about Serverless framework
139139
- Visit [Nx Documentation](https://nx.dev) to learn more about Nx dev toolkit
140-
140+
- Visit [LocalStack](https://localstack.cloud/) to learn more about it
141141
## Contribution
142142

143143
Found an issue? feel free to raise an issue with information to reproduce.

0 commit comments

Comments
 (0)