diff options
author | sumneko <sumneko@hotmail.com> | 2021-10-01 13:36:47 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2021-10-01 13:36:47 +0800 |
commit | 934b5c92e4b9365a16c084943852014c0cae21a9 (patch) | |
tree | 1b298ba07ded13f10ad597115a97f30bbee05628 /script/parser | |
parent | add1ab2579609ba9ce9b94bd92dc6c6bf3e05413 (diff) | |
download | lua-language-server-934b5c92e4b9365a16c084943852014c0cae21a9.zip |
#693 fix
Diffstat (limited to 'script/parser')
-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 |