[Document][Array] Add missing call-seq for Array#append

This commit is contained in:
Juanito Fatas 2021-01-18 21:48:17 +09:00 коммит произвёл Marc-André Lafortune
Родитель dff74ee6db
Коммит ac1a4bccbd
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -1323,6 +1323,7 @@ rb_ary_cat(VALUE ary, const VALUE *argv, long len)
/*
* call-seq:
* array.push(*objects) -> self
* array.append(*objects) -> self
*
* Appends trailing elements.
*