diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-06-28 15:01:16 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-06-28 15:01:16 +0800 |
commit | daee93fb17e8f206e63ab8573566762011a3f1cd (patch) | |
tree | 899636477d8afb30b7dbfe995ef9fa8a76239919 /server/test/completion | |
parent | f6a6e9f9d36d34c542c721db41a4e9770bcebcf7 (diff) | |
download | lua-language-server-daee93fb17e8f206e63ab8573566762011a3f1cd.zip |
修改enum的语法
Diffstat (limited to 'server/test/completion')
-rw-r--r-- | server/test/completion/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/test/completion/init.lua b/server/test/completion/init.lua index 98d6611d..bc17901e 100644 --- a/server/test/completion/init.lua +++ b/server/test/completion/init.lua @@ -1341,8 +1341,8 @@ zz$ TEST [[ ---@param x string ----| "'选项1'" {comment = '注释1'} ----| "'选项2'" {comment = '注释2'} +---| "'选项1'" # 注释1 +---| "'选项2'" # 注释2 function f(x) end f($) |