; Fix typos in treesit.c

* src/treesit.c (treesit_traverse_validate_predicate)
(Ftreesit_node_match_p): Fix typos.
This commit is contained in:
Yuan Fu 2023-04-16 20:35:45 -07:00
parent d005e685e1
commit a46201f57e
No known key found for this signature in database
GPG key ID: 56E19BC57664A442

View file

@ -3207,7 +3207,7 @@ treesit_traverse_validate_predicate (Lisp_Object pred,
{
*signal_data = list2 (build_string ("Cannot find the definition "
"of the predicate in "
"`treesit-things-settings'"),
"`treesit-thing-settings'"),
pred);
return false;
}
@ -3705,7 +3705,7 @@ DEFUN ("treesit-node-match-p",
doc: /* Check whether NODE matches PREDICATE.
PREDICATE can be a regexp matching node type, a predicate function,
and more, see `treesit-things-definition' for detail. Return non-nil
and more, see `treesit-thing-settings' for detail. Return non-nil
if NODE matches PRED, nil otherwise. */)
(Lisp_Object node, Lisp_Object predicate)
{