1
0
Fork 0

dump: no space after [ and before ]

This commit is contained in:
mfranz 2008-12-03 20:49:33 +00:00
parent 4cd1c72bda
commit 5c88cdf6f1

View file

@ -205,7 +205,7 @@ var string = func(o) {
var s = "";
forindex (var i; o)
s ~= (i == 0 ? "" : ", ") ~ debug.string(o[i]);
return _bracket("[") ~ " " ~ s ~ " " ~ _bracket("]");
return _bracket("[") ~ s ~ _bracket("]");
} elsif (t == "hash") {
if (contains(o, "parents") and typeof(o.parents) == "vector"