fix inconsistent var name

master
kikito 10 years ago
parent 182e6f28c1
commit 3eb9c65c7b
  1. 6
      inspect.lua

@ -236,12 +236,12 @@ function Inspector:putTable(t)
local nonSequentialKeys = getNonSequentialKeys(t) local nonSequentialKeys = getNonSequentialKeys(t)
local length = #t local length = #t
local mt = getmetatable(t) local mt = getmetatable(t)
local to_string_result = getToStringResultSafely(t, mt) local toStringResult = getToStringResultSafely(t, mt)
self:puts('{') self:puts('{')
self:down(function() self:down(function()
if to_string_result then if toStringResult then
self:puts(' -- ', escape(to_string_result)) self:puts(' -- ', escape(toStringResult))
if length >= 1 then self:tabify() end if length >= 1 then self:tabify() end
end end

Loading…
Cancel
Save