Browse Source

Lua: normalize printing of anonymous objects

Justin Donaldson 10 years ago
parent
commit
7bcad8ac67
1 changed files with 2 additions and 2 deletions
  1. 2 2
      std/lua/Boot.hx

+ 2 - 2
std/lua/Boot.hx

@@ -153,9 +153,9 @@ class Boot {
 					if (first) then 
 					if (first) then 
 						first = false
 						first = false
 					else 
 					else 
-						result = result .. ','
+						result = result .. ', '
 					end
 					end
-					result = result .. i .. ' => ' .. lua.Boot.__string_rec(v, s .. 'o');
+					result = result .. i .. ': ' .. lua.Boot.__string_rec(v, s .. 'o');
 				end
 				end
 			end
 			end
 			result = result .. ' }';
 			result = result .. ' }';