Skip to content

Commit

Permalink
chore: fix return type
Browse files Browse the repository at this point in the history
  • Loading branch information
amaanq authored and ObserverOfTime committed Feb 25, 2024
1 parent 261a3a7 commit b0e732d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tree_sitter/binding.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class TreeCursor:
and return True. Otherwise, return False.
"""
...
def goto_descendant(self, index: int) -> bool:
def goto_descendant(self, index: int) -> None:
"""Go to the descendant at the given index.
If the current node has a descendant at the given index, move to the
Expand Down

0 comments on commit b0e732d

Please sign in to comment.