Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorial/1-serialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ You can install httpie using pip:

Finally, we can get a list of all of the snippets:

http http://127.0.0.1:8000/snippets/ --unsorted
http GET http://127.0.0.1:8000/snippets/ --unsorted

HTTP/1.1 200 OK
...
Expand Down Expand Up @@ -354,7 +354,7 @@ Finally, we can get a list of all of the snippets:

Or we can get a particular snippet by referencing its id:

http http://127.0.0.1:8000/snippets/2/ --unsorted
http GET http://127.0.0.1:8000/snippets/2/ --unsorted

HTTP/1.1 200 OK
...
Expand Down
Loading