Skip to content

Commit

Permalink
get request and response examples in proper order
Browse files Browse the repository at this point in the history
  • Loading branch information
Beej Jorgensen committed Mar 5, 2019
1 parent fdd0f41 commit 64875b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ No. The key-value pairs can be in any order.
Caveat: the first line of the header is always something like this for requests:

```http
HTTP/1.1 200 OK
GET /index.html HTTP/1.1
```

and the first line of the response is always something like this:

```http
GET /index.html HTTP/1.1
HTTP/1.1 200 OK
```

But _after_ that, with all the things like `Content-Length` and `Content-Type` and all that, those can be in any order.
Expand Down

0 comments on commit 64875b1

Please sign in to comment.