Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions array.c
Original file line number Diff line number Diff line change
Expand Up @@ -4904,15 +4904,15 @@ rb_ary_fill(int argc, VALUE *argv, VALUE ary)

/*
* call-seq:
* array + other_array -> new_array
* self + other_array -> new_array
*
* Returns a new +Array+ containing all elements of +array+
* Returns a new array containing all elements of +self+
* followed by all elements of +other_array+:
*
* a = [0, 1] + [2, 3]
* a # => [0, 1, 2, 3]
*
* Related: #concat.
* Related: Array#concat, Array#*.
*/

VALUE
Expand Down