From 6cd5e716e32bc45f501d411be5fd4a65b60d82c3 Mon Sep 17 00:00:00 2001 From: wkwkhautbois Date: Wed, 29 May 2024 06:26:22 +0900 Subject: [PATCH] Tutorial 1: Added --unsorted option to httpie calls to prevent automatic json key sorting --- docs/tutorial/1-serialization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/1-serialization.md b/docs/tutorial/1-serialization.md index c86008104..5320610c9 100644 --- a/docs/tutorial/1-serialization.md +++ b/docs/tutorial/1-serialization.md @@ -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/ + http http://127.0.0.1:8000/snippets/ --unsorted HTTP/1.1 200 OK ... @@ -346,7 +346,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/ + http http://127.0.0.1:8000/snippets/2/ --unsorted HTTP/1.1 200 OK ...