diff --git a/spec/README.md b/spec/README.md index a7c6b5c..f9d18d4 100644 --- a/spec/README.md +++ b/spec/README.md @@ -340,7 +340,7 @@ following resource paths: │ │ └──── │ ├──── cookies HTTP request cookie │ │ └──── -│ ├──── form form-urlencoded form fields +│ ├──── form Form-urlencoded form fields │ │ └──── │ ├──── files Files uploaded via multi-part form fields │ │ └──── @@ -350,10 +350,12 @@ following resource paths: │ └─ response All information related to the HTTP request. Write-Only ├──── status HTTP status code + ├──── headers HTTP response headers + │ └──── + ├──── cookies HTTP request cookie + │ └──── ├──── body Response body. Mutually exclusive with response/stream - ├──── stream Chunk-encoded body. Streamed response. Mutually exclusive with response/body - └──── headers HTTP response headers - └──── + └──── stream Chunk-encoded body. Streamed response. Mutually exclusive with response/body ```