From 98be8d9fc1de19ec526cf7bee0d03a1e78262ba8 Mon Sep 17 00:00:00 2001 From: Alexandre Detiste Date: Mon, 12 Feb 2024 09:28:01 +0100 Subject: chore(http): Correct typos in error message and code comments (#423) --- src/http.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/http.lua') diff --git a/src/http.lua b/src/http.lua index e93003d..259eb2b 100644 --- a/src/http.lua +++ b/src/http.lua @@ -54,7 +54,7 @@ local function receiveheaders(sock, headers) while line ~= "" do -- get field-name and value name, value = socket.skip(2, string.find(line, "^(.-):%s*(.*)")) - if not (name and value) then return nil, "malformed reponse headers" end + if not (name and value) then return nil, "malformed response headers" end name = string.lower(name) -- get next line (value might be folded) line, err = sock:receive() @@ -81,7 +81,7 @@ socket.sourcet["http-chunked"] = function(sock, headers) dirty = function() return sock:dirty() end }, { __call = function() - -- get chunk size, skip extention + -- get chunk size, skip extension local line, err = sock:receive() if err then return nil, err end local size = base.tonumber(string.gsub(line, ";.*", ""), 16) @@ -281,7 +281,7 @@ local function adjustrequest(reqt) if not (host and host ~= "") then socket.try(nil, "invalid host '" .. base.tostring(nreqt.host) .. "'") end - -- compute uri if user hasn't overriden + -- compute uri if user hasn't overridden nreqt.uri = reqt.uri or adjusturi(nreqt) -- adjust headers in request nreqt.headers = adjustheaders(nreqt) -- cgit v1.2.3-55-g6feb