diff options
| -rw-r--r-- | serialize.lua | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/serialize.lua b/serialize.lua index d9177d9..c159141 100644 --- a/serialize.lua +++ b/serialize.lua @@ -10,7 +10,7 @@ end  local function my_serialize_2(t, level)  	level = level or 0  	local lines = { } -	local indent = ("  "):rep(level) +	local indent = ("\t"):rep(level)  	for k, v in pairs(t) do  		local typ = type(v)  		if typ == "table" then | 
