Skip to content

Commit 2de6c34

Browse files
authored
docs: Fix documentation output (#751)
1 parent 045927c commit 2de6c34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws-python-flask-dynamodb-api/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ _Note_: In current form, after deployment, your API is public and can be invoked
7676
After successful deployment, you can create a new user by calling the corresponding endpoint:
7777

7878
```bash
79-
curl --request POST 'https://xxxxxx.execute-api.us-east-1.amazonaws.com/dev/users' --header 'Content-Type: application/json' --data-raw '{"name": "John", "userId": "someUserId"}'
79+
curl --request POST 'https://xxxxxx.execute-api.us-east-1.amazonaws.com/users' --header 'Content-Type: application/json' --data-raw '{"name": "John", "userId": "someUserId"}'
8080
```
8181

8282
Which should result in the following response:
@@ -88,7 +88,7 @@ Which should result in the following response:
8888
You can later retrieve the user by `userId` by calling the following endpoint:
8989

9090
```bash
91-
curl https://xxxxxxx.execute-api.us-east-1.amazonaws.com/dev/users/someUserId
91+
curl https://xxxxxxx.execute-api.us-east-1.amazonaws.com/users/someUserId
9292
```
9393

9494
Which should result in the following response:

0 commit comments

Comments
 (0)