aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/buf.lua
diff options
context:
space:
mode:
authornotomo <notomo.motono@gmail.com>2023-01-04 20:48:41 +0900
committerGitHub <noreply@github.com>2023-01-04 11:48:41 +0000
commite35b9020b16985eee26e942f9a3f6b045bc3809b (patch)
tree0a685e4fccb55380017e059243db0570a83954cb /runtime/lua/vim/lsp/buf.lua
parentef18c9f9b05caf1f39ed32762f53802e378f143b (diff)
downloadrneovim-e35b9020b16985eee26e942f9a3f6b045bc3809b.tar.gz
rneovim-e35b9020b16985eee26e942f9a3f6b045bc3809b.tar.bz2
rneovim-e35b9020b16985eee26e942f9a3f6b045bc3809b.zip
docs(lua): adjust some type annotations
Diffstat (limited to 'runtime/lua/vim/lsp/buf.lua')
-rw-r--r--runtime/lua/vim/lsp/buf.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/buf.lua b/runtime/lua/vim/lsp/buf.lua
index 226ed980fb..8f4bd15eaa 100644
--- a/runtime/lua/vim/lsp/buf.lua
+++ b/runtime/lua/vim/lsp/buf.lua
@@ -383,7 +383,7 @@ end
--- Lists all the references to the symbol under the cursor in the quickfix window.
---
----@param context (table) Context for the request
+---@param context (table|nil) Context for the request
---@see https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_references
---@param options table|nil additional options
--- - on_list: (function) handler for list results. See |lsp-on-list-handler|