aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authorstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-19 21:35:51 +0000
committerstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-10-19 21:35:51 +0000
commitaf7f9de4b9fa4f1e2edddb340c66f5a4201ca62e (patch)
tree41aead01af51d80ed938a4a069a5f8e4b78eae30 /array.c
parent1411b7f934fcb9d9cf82048e208034efa1721daf (diff)
downloadruby-af7f9de4b9fa4f1e2edddb340c66f5a4201ca62e.tar.gz
array.c, file.c, string.c: [DOC] fix typos
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65185 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r--array.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/array.c b/array.c
index a82ab64dd7..1dd82ad28e 100644
--- a/array.c
+++ b/array.c
@@ -3707,7 +3707,7 @@ ary_append(VALUE x, VALUE y)
/*
* call-seq:
- * ary.concat(other_ary1, other_ary2,...) -> ary
+ * ary.concat(other_ary1, other_ary2, ...) -> ary
*
* Appends the elements of <code>other_ary</code>s to +self+.
*
@@ -4399,7 +4399,7 @@ rb_ary_or(VALUE ary1, VALUE ary2)
/*
* call-seq:
- * ary.union(other_ary1, other_ary2,...) -> ary
+ * ary.union(other_ary1, other_ary2, ...) -> 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.