diff options
author | sumneko <sumneko@hotmail.com> | 2021-10-01 13:40:35 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2021-10-01 13:40:35 +0800 |
commit | 9afc1d8760ccd80ea089a4e2e42c608c3f0e372e (patch) | |
tree | aa85b7d0ab338547fe5c79ff66f175cdd39ec953 /script/parser/guide.lua | |
parent | 4f543a84763ae84f45faab0a73612dc0a1b83d08 (diff) | |
download | lua-language-server-9afc1d8760ccd80ea089a4e2e42c608c3f0e372e.zip |
#693 fix
Diffstat (limited to 'script/parser/guide.lua')
-rw-r--r-- | script/parser/guide.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/parser/guide.lua b/script/parser/guide.lua index 07bbc0cd..3c6ef9ef 100644 --- a/script/parser/guide.lua +++ b/script/parser/guide.lua @@ -286,7 +286,7 @@ function m.getBlock(obj) return obj end if obj == obj.parent then - error('obj == obj.parent?', obj.type) + error('obj == obj.parent?' .. obj.type) end obj = obj.parent end |