diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-07-07 15:38:18 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-07-07 15:38:18 +0800 |
commit | f5464ddc9a8e043977f27e70d9f1dfc2be56b02e (patch) | |
tree | b2c3d0e061753e69105997a81c6e8567998054cf /test/crossfile | |
parent | 0b87804cba3f24318362993ca2e32e0f95ce990d (diff) | |
download | lua-language-server-f5464ddc9a8e043977f27e70d9f1dfc2be56b02e.zip |
`boolean` kick `true` and `false`
Diffstat (limited to 'test/crossfile')
-rw-r--r-- | test/crossfile/hover.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/crossfile/hover.lua b/test/crossfile/hover.lua index 827c440c..69aa9239 100644 --- a/test/crossfile/hover.lua +++ b/test/crossfile/hover.lua @@ -681,7 +681,7 @@ TEST {{ path = 'a.lua', content = '', }, { }, hover = [[ ```lua -function f(a: boolean|true|false) +function f(a: boolean) ``` --- |