diff options
author | Luis Piloto <luis.r.piloto@gmail.com> | 2020-11-05 09:14:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-05 09:14:33 +0000 |
commit | 9162cc5417f7d4a4063633e7e4b83b941c8da7cf (patch) | |
tree | 5c943338978c82d40385e3df5027246555112113 | |
parent | d1bed9677852cc610c64391df348a642851efda9 (diff) | |
download | rneovim-9162cc5417f7d4a4063633e7e4b83b941c8da7cf.tar.gz rneovim-9162cc5417f7d4a4063633e7e4b83b941c8da7cf.tar.bz2 rneovim-9162cc5417f7d4a4063633e7e4b83b941c8da7cf.zip |
Update runtime/doc/treesitter.txt
Co-authored-by: Thomas Vigouroux <tomvig38@gmail.com>
-rw-r--r-- | runtime/doc/treesitter.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/treesitter.txt b/runtime/doc/treesitter.txt index 9f0d529b9a..58cd535e98 100644 --- a/runtime/doc/treesitter.txt +++ b/runtime/doc/treesitter.txt @@ -176,7 +176,7 @@ vim.treesitter.parse_query({lang}, {query}) Parse {query} as a string. (If the query is in a file, the caller should read the contents into a string before calling). - Returns a |lua-treesitter-query| Query object which can be used to + Returns a `Query` (see |lua-treesitter-query|) object which can be used to search nodes in the syntax tree for the patterns defined in {query} using `iter_*` methods below. Exposes `info` and `captures` with additional information about the {query}. |