mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.array: Change tostring format to [a,b,c]
Arrays in Lua do use { } but since __tostring is often user-facing it seems sensible to use [ ] instead for consistency with many other systems; as well as to allow the {a,b,c} formatting to be used by util.set without being confused with util.array.
This commit is contained in:
parent
7e50781f51
commit
a8a7be217a
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ local array_methods = {};
|
|||
local array_mt = {
|
||||
__index = array_methods;
|
||||
__name = "array";
|
||||
__tostring = function (self) return "{"..self:concat(", ").."}"; end;
|
||||
__tostring = function (self) return "["..self:concat(", ").."]"; end;
|
||||
};
|
||||
|
||||
function array_mt:__freeze() return self; end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue