Skip to content

Commit 8e94081

Browse files
committed
fixed indentations
1 parent fcbae5d commit 8e94081

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

docs/tutorial/1-serialization.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,9 +340,11 @@ You can install httpie using pip:
340340

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

343-
http http://127.0.0.1:8000/snippets/ --body
343+
http http://127.0.0.1:8000/snippets/
344344

345-
[
345+
HTTP/1.1 200 OK
346+
...
347+
[
346348
{
347349
"id": 1,
348350
"title": "",
@@ -367,7 +369,7 @@ Or we can get a particular snippet by referencing its id:
367369

368370
HTTP/1.1 200 OK
369371
...
370-
{
372+
{
371373
"id": 2,
372374
"title": "",
373375
"code": "print \"hello, world\"\n",

docs/tutorial/2-requests-and-responses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Go ahead and test the API from the command line, as we did in [tutorial part 1][
127127

128128
We can get a list of all of the snippets, as before.
129129

130-
http http://127.0.0.1:8000/snippets/
130+
http http://127.0.0.1:8000/snippets/
131131

132132
HTTP/1.1 200 OK
133133
...

0 commit comments

Comments
 (0)