Skip to content

Commit ff167a6

Browse files
committed
Fix some wrong quotes
1 parent d96c7ed commit ff167a6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/content/docs/body/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ HTTP/1.1 defines two mechanisms for framing a request body: **Content-Length** (
1616
1717
**Chunked encoding** — body is split into self-terminating chunks:
1818

19-
> "The chunked transfer coding wraps the payload body in order to transfer it as a series of chunks, each with its own size indicator, followed by an OPTIONAL trailer section containing trailer fields." — RFC 9112 Section 7.1
19+
> "The chunked transfer coding wraps content in order to transfer it as a series of chunks, each with its own size indicator, followed by an OPTIONAL trailer section containing trailer fields." — RFC 9112 Section 7.1
2020
2121
**No CL, no TE** — with neither header, the body length is zero:
2222

docs/content/docs/headers/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ HTTP header fields follow a strict grammar: `field-name ":" OWS field-value OWS`
1616
1717
**Obs-fold** (line folding with leading whitespace):
1818

19-
> "A server that receives an obs-fold in a request message that is not within a message/http container **MUST** either reject the message by sending a 400 (Bad Request)... or replace each received obs-fold with one or more SP octets prior to interpreting the field value." — RFC 9112 Section 5.1
19+
> "A server that receives an obs-fold in a request message that is not within a message/http container **MUST** either reject the message by sending a 400 (Bad Request)... or replace each received obs-fold with one or more SP octets prior to interpreting the field value." — RFC 9112 Section 5.2
2020
2121
**Field name** must be a `token` = `1*tchar`, meaning at least one valid token character. Empty names, non-ASCII bytes, and special characters are all violations.
2222

0 commit comments

Comments
 (0)