Skip to content

Commit 5271d51

Browse files
committed
spaces
1 parent d6939cf commit 5271d51

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@ Using cURL, make a POST request to `/api/todo/` with the two required fields, de
2929

3030
```bash
3131
curl \
32-
--silent \
33-
-X POST \
34-
-d '{"description": "Make a New Year resolution list", "due_date": "2025-01-01"}' \
35-
-H 'Content-Type: application/json' \
36-
http://localhost:8000/api/todo/
32+
--silent \
33+
-X POST \
34+
-d '{"description": "Make a New Year resolution list", "due_date": "2025-01-01"}' \
35+
-H 'Content-Type: application/json' \
36+
http://localhost:8000/api/todo/
3737
```
3838

3939
### Searching for similar TODO items
4040

4141
```bash
4242
curl \
43-
--silent \
44-
-H "Content-Type: application/json" \
45-
'http://localhost:8000/api/todo/search/?q=resolution&limit=1' | jq ".[0].description"
43+
--silent \
44+
-H "Content-Type: application/json" \
45+
'http://localhost:8000/api/todo/search/?q=resolution&limit=1' | jq ".[0].description"
4646
```

0 commit comments

Comments
 (0)