Remove reference to strings from quantifier-only function

This commit is contained in:
Hendrik van Antwerpen 2022-01-11 18:18:21 +01:00
parent 99e74fa0f5
commit acd3d32c36
2 changed files with 4 additions and 6 deletions

View file

@ -672,9 +672,8 @@ extern "C" {
) -> *const ::std::os::raw::c_char;
}
extern "C" {
#[doc = " Get the quantifier of the query's captures, or one of the query's string"]
#[doc = " literals. Each capture and string is associated with a numeric id based"]
#[doc = " on the order that it appeared in the query's source."]
#[doc = " Get the quantifier of the query's captures. Each capture is * associated"]
#[doc = " with a numeric id based on the order that it appeared in the query's source."]
pub fn ts_query_capture_quantifier_for_id(
arg1: *const TSQuery,
pattern_id: u32,

View file

@ -750,9 +750,8 @@ const char *ts_query_capture_name_for_id(
);
/**
* Get the quantifier of the query's captures, or one of the query's string
* literals. Each capture and string is associated with a numeric id based
* on the order that it appeared in the query's source.
* Get the quantifier of the query's captures. Each capture is * associated
* with a numeric id based on the order that it appeared in the query's source.
*/
TSQuantifier ts_query_capture_quantifier_for_id(
const TSQuery *,