util.array: Break long line

This commit is contained in:
Matthew Wild 2018-10-19 13:31:00 +01:00
parent 49c6847837
commit fbb11b868f

View file

@ -19,7 +19,11 @@ local type = type;
local array = {};
local array_base = {};
local array_methods = {};
local array_mt = { __index = array_methods, __name = "array", __tostring = function (self) return "{"..self:concat(", ").."}"; end };
local array_mt = {
__index = array_methods;
__name = "array";
__tostring = function (self) return "{"..self:concat(", ").."}"; end;
};
function array_mt:__freeze() return self; end