diff options
author | Ilia Choly <ilia.choly@gmail.com> | 2024-05-31 10:48:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 16:48:05 +0200 |
commit | d62d181ce065556be51d5eda0425aa42f427cc27 (patch) | |
tree | 5c1236580e158b43ae54933dedf3e9064b56d4c0 /runtime/lua/vim/lsp/_meta/protocol.lua | |
parent | 217828b20c9fc224c6892ce1b0129850c280f598 (diff) | |
download | rneovim-d62d181ce065556be51d5eda0425aa42f427cc27.tar.gz rneovim-d62d181ce065556be51d5eda0425aa42f427cc27.tar.bz2 rneovim-d62d181ce065556be51d5eda0425aa42f427cc27.zip |
refactor(lsp): use tuple syntax in generated protocol types (#29110)
Diffstat (limited to 'runtime/lua/vim/lsp/_meta/protocol.lua')
-rw-r--r-- | runtime/lua/vim/lsp/_meta/protocol.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/_meta/protocol.lua b/runtime/lua/vim/lsp/_meta/protocol.lua index 9a11972007..cbddd24630 100644 --- a/runtime/lua/vim/lsp/_meta/protocol.lua +++ b/runtime/lua/vim/lsp/_meta/protocol.lua @@ -3235,7 +3235,7 @@ error('Cannot require a meta file') --- ---*Note*: a label of type string should be a substring of its containing signature label. ---Its intended use case is to highlight the parameter label part in the `SignatureInformation.label`. ----@field label string|{ [1]: uinteger, [2]: uinteger } +---@field label string|[uinteger, uinteger] --- ---The human-readable doc-comment of this parameter. Will be shown ---in the UI but can be omitted. |