[DOC] Update `rb_gc_mark_locations` doc

The documentation says that the `end` pointer will be marked
but looking at the source, that is not the case.
This commit is contained in:
Jimmy Bourassa 2022-12-08 10:38:23 -05:00 коммит произвёл GitHub
Родитель e9f6d6b3fb
Коммит 5738ae70d9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -71,7 +71,7 @@ RBIMPL_ATTR_NONNULL((1))
* addressable.
* @param[out] start Pointer to an array of objects.
* @param[out] end Pointer that terminates the array of objects.
* @post Objects from `start` to `end`, both inclusive, are marked.
* @post Objects from `start` (included) to `end` (excluded) are marked.
*
* @internal
*