Fix typo in `serialize.lua`.

master
Diego Martínez 2015-01-15 15:08:06 -03:00 committed by ShadowNinja
parent 9f52149a11
commit c9669e90bb
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ function core.serialize(x)
end
return "{"..table.concat(vals, ", ").."}"
else
error("Can't serialize data of type "..t)
error("Can't serialize data of type "..tp)
end
end