add spaces for proper linebreaks in trait documentation tables

This commit is contained in:
Matthias Mailänder
2014-07-20 13:52:00 +02:00
parent 6c1efac235
commit ef5178407c

View File

@@ -79,7 +79,7 @@ namespace OpenRA
if (t.IsArray)
{
var elems = ((Array)v).OfType<object>();
return elems.JoinWith(",");
return elems.JoinWith(", ");
}
if (t == typeof(DateTime))