diff --git a/src/gleam/http/request.gleam b/src/gleam/http/request.gleam index 67e7af6..b8d00ae 100644 --- a/src/gleam/http/request.gleam +++ b/src/gleam/http/request.gleam @@ -231,7 +231,7 @@ pub fn set_scheme(req: Request(body), scheme: Scheme) -> Request(body) { Request(..req, scheme: scheme) } -/// Set the method of the request. +/// Set the host of the request. /// pub fn set_host(req: Request(body), host: String) -> Request(body) { Request(..req, host: host)