1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Merge branch 'patch-5' of https://github.com/sos4nt/ruby into trunk

[Fix GH-2084]
This commit is contained in:
Kazuhiro NISHIYAMA 2019-04-22 22:44:38 +09:00
commit 8c689e216f
No known key found for this signature in database
GPG key ID: 262ED8DBB4222F7A

View file

@ -4683,7 +4683,7 @@ rb_ary_or(VALUE ary1, VALUE ary2)
/*
* call-seq:
* ary.union(other_ary1, other_ary2, ...) -> ary
* ary.union(other_ary1, other_ary2, ...) -> new_ary
*
* Set Union --- Returns a new array by joining <code>other_ary</code>s with +self+,
* excluding any duplicates and preserving the order from the given arrays.