fix: ensure function signatures in the API consistently show parameter names

This commit is contained in:
Amaan Qureshi 2023-08-03 21:00:56 +01:00
parent e024653cb0
commit d710dc9c89
4 changed files with 270 additions and 250 deletions

View file

@ -180,7 +180,7 @@ bool ts_lookahead_iterator_reset_state(TSLookaheadIterator * self, TSStateId sta
return true;
}
const TSLanguage * ts_lookahead_iterator_language(const TSLookaheadIterator *self) {
const TSLanguage *ts_lookahead_iterator_language(const TSLookaheadIterator *self) {
const LookaheadIterator *iterator = (const LookaheadIterator *)self;
return iterator->language;
}