docs: replace TSInput by TSInputEdit in "Advanced Parsing"

This commit is contained in:
Soheil Salmani 2025-08-13 21:58:17 +02:00 committed by GitHub
parent c60264b87f
commit 99c121bfe8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,7 @@ Then, you can call `ts_parser_parse` again, passing in the old tree. This will c
with the old tree.
When you edit a syntax tree, the positions of its nodes will change. If you have stored any `TSNode` instances outside of
the `TSTree`, you must update their positions separately, using the same `TSInput` value, in order to update their
the `TSTree`, you must update their positions separately, using the same `TSInputEdit` value, in order to update their
cached positions.
```c