aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/treesitter.lua
diff options
context:
space:
mode:
authorIlia Choly <ilia.choly@gmail.com>2024-06-04 09:06:02 -0400
committerGitHub <noreply@github.com>2024-06-04 06:06:02 -0700
commit8cbb1f20e557461c8417583a7f69d53aaaef920b (patch)
tree7b24c7e171b712d77fa74ebc13e8541dd663393f /runtime/lua/vim/treesitter.lua
parent61025c9e7aa41dae11422162a54cc7696f7e783e (diff)
downloadrneovim-8cbb1f20e557461c8417583a7f69d53aaaef920b.tar.gz
rneovim-8cbb1f20e557461c8417583a7f69d53aaaef920b.tar.bz2
rneovim-8cbb1f20e557461c8417583a7f69d53aaaef920b.zip
refactor(lua): use tuple syntax everywhere #29111
Diffstat (limited to 'runtime/lua/vim/treesitter.lua')
-rw-r--r--runtime/lua/vim/treesitter.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/treesitter.lua b/runtime/lua/vim/treesitter.lua
index db544c1ab1..e36aacfd94 100644
--- a/runtime/lua/vim/treesitter.lua
+++ b/runtime/lua/vim/treesitter.lua
@@ -335,7 +335,7 @@ end
---
--- 0-indexed (row, col) tuple. Defaults to cursor position in the
--- current window. Required if {bufnr} is not the current buffer
---- @field pos { [1]: integer, [2]: integer }?
+--- @field pos [integer, integer]?
---
--- Parser language. (default: from buffer filetype)
--- @field lang string?