Tweak comment formatting in api.h so bindgen doesn't create a doctest

This commit is contained in:
Max Brunsfeld 2021-10-11 17:23:44 -07:00
parent 3d554ecf6b
commit fe29bc8c19
2 changed files with 9 additions and 17 deletions

View file

@ -180,9 +180,7 @@ const TSLanguage *ts_parser_language(const TSParser *self);
* If `length` is zero, then the entire document will be parsed. Otherwise,
* the given ranges must be ordered from earliest to latest in the document,
* and they must not overlap. That is, the following must hold for all
* `i` < `length - 1`:
*
* ranges[i].end_byte <= ranges[i + 1].start_byte
* `i` < `length - 1`: ranges[i].end_byte <= ranges[i + 1].start_byte
*
* If this requirement is not satisfied, the operation will fail, the ranges
* will not be assigned, and this function will return `false`. On success,