chore: improve comments

This commit is contained in:
Sofia Rodrigues
2026-03-03 12:10:22 -03:00
parent 8cb30347b6
commit 58f14d34d7
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,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

@@ -63,7 +63,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 := {}