Skip to content

Update 1-serialization.md #9543

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 9, 2024
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