formating better for spm packages

This commit is contained in:
2026-03-26 08:12:37 -04:00
parent 22b5021e9d
commit ab0a10105c
193 changed files with 4228 additions and 464 deletions
@@ -106,7 +106,7 @@ local ok, err = xpcall(function()
local file = {}
function file:read(n)
function file.read(n)
assert(not closed, "file is closed")
local s = content()
@@ -123,7 +123,7 @@ local ok, err = xpcall(function()
return out
end
function file:write(data)
function file.write(data)
assert(not closed, "file is closed")
local s = content()
@@ -136,7 +136,7 @@ local ok, err = xpcall(function()
return true
end
function file:seek(whence, offset)
function file.seek(whence, offset)
assert(not closed, "file is closed")
local s = content()