diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-07 02:38:16 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-07 02:38:16 +0800 |
commit | e9975c2081dfe2f42392a7612b2a3862e513e45e (patch) | |
tree | 630e9e8ae9fb085e46771f807bcaa41ae038004b /test/crossfile | |
parent | 3e2948e1480659d7c29f9d701e378330c08b238f (diff) | |
download | lua-language-server-e9975c2081dfe2f42392a7612b2a3862e513e45e.zip |
doc.type.boolean
Diffstat (limited to 'test/crossfile')
-rw-r--r-- | test/crossfile/hover.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/crossfile/hover.lua b/test/crossfile/hover.lua index b5c599eb..10124eb9 100644 --- a/test/crossfile/hover.lua +++ b/test/crossfile/hover.lua @@ -673,8 +673,8 @@ TEST {{ path = 'a.lua', content = '', }, { path = 'b.lua', content = [[ ---@param a boolean # xxx - ---| 'true' # ttt - ---| 'false' # fff + ---| true # ttt + ---| false # fff local function <?f?>(a) end ]] @@ -689,7 +689,7 @@ function f(a: boolean|true|false) @*param* `a` — xxx ```lua -a: boolean +a: | true -- ttt | false -- fff ```]]} |