mirror of
https://github.com/Keyslam-Group/Concord.git
synced 2025-09-03 04:43:56 -04:00
Small fixes
This commit is contained in:
parent
f7a394f057
commit
6ddb28ffbc
10 changed files with 85 additions and 71 deletions
|
@ -10,8 +10,6 @@ function Assemblage.new(assemble)
|
|||
__isAssemblage = true,
|
||||
}, Assemblage)
|
||||
|
||||
Assemblage.__mt = {__index = assemblage}
|
||||
|
||||
return assemblage
|
||||
end
|
||||
|
||||
|
@ -22,5 +20,7 @@ function Assemblage:assemble(e, ...)
|
|||
end
|
||||
|
||||
return setmetatable(Assemblage, {
|
||||
__call = function(_, ...) return Assemblage.new(...) end,
|
||||
__call = function(_, ...)
|
||||
return Assemblage.new(...)
|
||||
end,
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue