Merge branch 'sofia/async-http-data' into sofia/async-http-headers

This commit is contained in:
Sofia Rodrigues
2026-03-03 12:10:31 -03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ Builds an HTTP Request.
-/
structure Request.Builder where
/--
The head of the request.
The request-line of an HTTP request.
-/
line : Head := { method := .get, version := .v11, uri := "*" }

View File

@@ -70,7 +70,7 @@ Builds an HTTP Response.
-/
structure Response.Builder where
/--
The response status-line information.
The start-line of an HTTP request (method, request-target, and version).
-/
line : Head := {}