[DOC] Fix documentation for Array#delete

Never returns self.
This commit is contained in:
Vivek Bharath Akupatni 2022-02-28 19:46:22 -05:00 коммит произвёл GitHub
Родитель bec492c77e
Коммит 11bcc0d9d6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3829,7 +3829,7 @@ ary_resize_smaller(VALUE ary, long len)
* array.delete(obj) -> deleted_object
* array.delete(obj) {|nosuch| ... } -> deleted_object or block_return
*
* Removes zero or more elements from +self+; returns +self+.
* Removes zero or more elements from +self+.
*
* When no block is given,
* removes from +self+ each element +ele+ such that <tt>ele == obj</tt>;