comment typo in object.lua (#1541)

This commit is contained in:
Luke aka SwissalpS 2023-06-25 04:09:27 +02:00 committed by takase1121
parent 2af3082640
commit bd53bc3718
No known key found for this signature in database
GPG Key ID: 60EEFFC68EB3031B
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ function Object:__tostring()
return "Object"
end
---Methamethod to allow using the object call as a constructor.
---Metamethod to allow using the object call as a constructor.
---@return core.object
function Object:__call(...)
local obj = setmetatable({}, self)