Skip to content

Commit 04fabb3

Browse files
guides: fix typo in python guide (#21208)
Signed-off-by: Craig <[email protected]>
1 parent befd9b0 commit 04fabb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/guides/python/develop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ Let's create an object with a post method
427427

428428
```console
429429
$ curl -X 'POST' \
430-
'http://0.0.0.0:8001/heroes/' \
430+
'http://localhost:8001/heroes/' \
431431
-H 'accept: application/json' \
432432
-H 'Content-Type: application/json' \
433433
-d '{
@@ -453,7 +453,7 @@ Let's make a get request with the next curl command:
453453

454454
```console
455455
curl -X 'GET' \
456-
'http://0.0.0.0:8001/heroes/' \
456+
'http://localhost:8001/heroes/' \
457457
-H 'accept: application/json'
458458
```
459459

0 commit comments

Comments
 (0)