Skip to content

Commit

Permalink
Minor formatting change to parse() func
Browse files Browse the repository at this point in the history
  • Loading branch information
rxi committed Aug 15, 2015
1 parent d1ebba0 commit b51b7a5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions json.lua
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,8 @@ parse = function(str, idx)
local f = char_func_map[chr]
if f then
return f(str, idx, chr)
else
decode_error(str, idx, "unexpected character '" .. chr .. "'")
end
decode_error(str, idx, "unexpected character '" .. chr .. "'")
end


Expand Down

0 comments on commit b51b7a5

Please sign in to comment.