Merge pull request #13796 from seungwonleee/master

Fix typo
This commit is contained in:
Sebastiaan van Stijn 2021-11-11 14:55:24 +01:00 committed by GitHub
commit cfacbc02e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View File

@ -81,9 +81,7 @@ Again, lets make sure that our container is running properly. Run the same cu
$ curl --request POST \
--url http://localhost:8000/test \
--header 'content-type: application/json' \
--data '{
"msg": "testing"
}'
--data '{"msg": "testing"}'
{"code":"success","payload":[{"msg":"testing","id":"dc0e2c2b-793d-433c-8645-b3a553ea26de","createDate":"2020-09-01T17:36:09.897Z"}]}
```

View File

@ -49,9 +49,7 @@ Now lets test our application by POSTing a JSON payload and then make an HTTP
$ curl --request POST \
--url http://localhost:8000/test \
--header 'content-type: application/json' \
--data '{
"msg": "testing"
}'
--data '{"msg": "testing"}'
```
Now, perform a GET request to the same endpoint to make sure our JSON payload was saved and retrieved correctly. The “id” and “createDate” will be different for you.