mod_admin_socket: Fix typo in comments

Introduced in 6966026262f4
This commit is contained in:
Kim Alvefur 2023-01-20 18:16:10 +01:00
parent 762e56920b
commit b15a8e1360
2 changed files with 2 additions and 2 deletions

View file

@ -8,7 +8,7 @@ if have_unix and type(unix) == "function" then
-- constructor was exported instead of a module table. Due to the lack of a
-- proper release of LuaSocket, distros have settled on shipping either the
-- last RC tag or some commit since then.
-- Here we accomodate both variants.
-- Here we accommodate both variants.
unix = { stream = unix };
end
if not have_unix or type(unix) ~= "table" then

View file

@ -145,7 +145,7 @@ local function new_connection(socket_path, listeners)
-- constructor was exported instead of a module table. Due to the lack of a
-- proper release of LuaSocket, distros have settled on shipping either the
-- last RC tag or some commit since then.
-- Here we accomodate both variants.
-- Here we accommodate both variants.
unix = { stream = unix };
end
if type(unix) ~= "table" then