fix(treesitter): docs reflect parser:parse()

Update docs to document that `parser:parse()` now returns a table of trees
This commit is contained in:
bkegley 2020-11-24 20:56:47 -06:00 committed by GitHub
parent 7caa622afc
commit 21eb2e5ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ Whenever you need to access the current syntax tree, parse the buffer: >
tstree = parser:parse()
<This will return an immutable tree that represents the current state of the
<This will return a table of immutable trees that represent the current state of the
buffer. When the plugin wants to access the state after a (possible) edit
it should call `parse()` again. If the buffer wasn't edited, the same tree will
be returned again without extra work. If the buffer was parsed before,