summaryrefslogtreecommitdiff
path: root/test/crossfile
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-04-16 22:11:23 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-04-16 22:11:23 +0800
commit12b087704082f6d2278c8eb06bd9ac3e7f014c1a (patch)
tree9ff1a55f036a0c125adf9eaf914c1324b236b3ad /test/crossfile
parentfa518d4f9522b38aca9478ac494e9523cca475f3 (diff)
downloadlua-language-server-12b087704082f6d2278c8eb06bd9ac3e7f014c1a.zip
fix #1061
Diffstat (limited to 'test/crossfile')
-rw-r--r--test/crossfile/hover.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/crossfile/hover.lua b/test/crossfile/hover.lua
index b0b66253..09eceb43 100644
--- a/test/crossfile/hover.lua
+++ b/test/crossfile/hover.lua
@@ -976,16 +976,16 @@ end
},
hover = [[
```lua
-function f(p: "a"|"b")
+function f(p: 'a'|'b')
```
---
```lua
p:
- | "a" -- comment 1
+ | 'a' -- comment 1
-- comment 2
- | "b" -- comment 3
+ | 'b' -- comment 3
-- comment 4
```]]}