diff options
Diffstat (limited to 'server/src/core')
-rw-r--r-- | server/src/core/hover/hover.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/core/hover/hover.lua b/server/src/core/hover/hover.lua index f09bfce4..7585e4ce 100644 --- a/server/src/core/hover/hover.lua +++ b/server/src/core/hover/hover.lua @@ -71,7 +71,7 @@ local function unpackTable(value) value:eachChild(function (key, child) local kType = type(key) if kType == 'table' then - key = ('[*%s]'):format(key:getType()) + key = ('[*%s]'):format(child:getType()) elseif math.type(key) == 'integer' then key = ('[%03d]'):format(key) elseif kType == 'string' then |