Skip to content

Commit 48e486f

Browse files
authored
Update README.md
1 parent 4fd8362 commit 48e486f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"stock": 10
6464
}'
6565

66-
> {"id":1,"name":"product1","price":10.99,"stock":10}
66+
# > {"id":1,"name":"product1","price":10.99,"stock":10}
6767
```
6868

6969
#### Get all products:
@@ -73,7 +73,7 @@
7373
$ curl --request GET \
7474
--url http://localhost:3000/api/v1/product
7575

76-
> [{"id":1,"name":"product1","price":10.99,"stock":10}]
76+
# > [{"id":1,"name":"product1","price":10.99,"stock":10}]
7777
```
7878

7979
#### Get a product by id:
@@ -83,7 +83,7 @@
8383
$ curl --request GET \
8484
--url http://localhost:3000/api/v1/product/1
8585

86-
> {"id":1,"name":"product1","price":10.99,"stock":10}
86+
# > {"id":1,"name":"product1","price":10.99,"stock":10}
8787
```
8888

8989
#### Update a product by id:
@@ -99,7 +99,7 @@
9999
"stock": 5
100100
}'
101101

102-
> {"id":1,"name":"a product","price":8.99,"stock":5}
102+
# > {"id":1,"name":"a product","price":8.99,"stock":5}
103103
```
104104

105105
#### Delete a product by id:
@@ -109,5 +109,5 @@
109109
$ curl --request DELETE \
110110
--url http://localhost:3000/api/v1/product/1
111111

112-
> {"id":1,"name":"a product","price":8.99,"stock":5}
112+
# > {"id":1,"name":"a product","price":8.99,"stock":5}
113113
```

0 commit comments

Comments
 (0)