aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-04-22 22:44:38 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-04-22 22:45:32 +0900
commit8c689e216fe749c9c7298c21a8114d6e680b015f (patch)
tree66a484073b409f6fca9a52eefa2afa4c381f18f6 /array.c
parent4cd67a848a0648c20b1cab9d2dfe1bf7d7d90be0 (diff)
parente19e5d2409e99ef7fd450d317e71e119cb5a4c3a (diff)
downloadruby-8c689e216fe749c9c7298c21a8114d6e680b015f.tar.gz
Merge branch 'patch-5' of https://github.com/sos4nt/ruby into trunk
[Fix GH-2084]
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index 91859cbc23..92841128e3 100644
--- a/array.c
+++ b/array.c
@@ -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.