mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.set: Change tostring format to {a, b, c}
Makes it easier to make out where the set starts and ends in cases where it may get embedded and tostring()-ed in a log message. { } taken over from util.array for consistency with some other systems syntax for Sets, e.g. Python
This commit is contained in:
parent
a8a7be217a
commit
d8789a671b
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ function set_mt.__tostring(set)
|
|||
for item in pairs(items) do
|
||||
s[#s+1] = tostring(item);
|
||||
end
|
||||
return t_concat(s, ", ");
|
||||
return "{"..t_concat(s, ", ").."}";
|
||||
end
|
||||
|
||||
function set_mt.__freeze(set)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue