summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-23 17:46:50 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-23 17:46:50 +0000
commit10d5f123d9b4758b02998bea747659f86d29242c (patch)
tree15492fa6f5ddb8df9c3b0a2e14033b80f5c049bd /array.c
parent2f787c4eed2b82b4d3badb0a24d5c30804a1ab21 (diff)
* array.c (rb_ary_zip): typo by @PragTob [Fix GH-337]
https://github.com/ruby/ruby/pull/337 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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 676ac696c2..bb631c8687 100644
--- a/array.c
+++ b/array.c
@@ -3070,7 +3070,7 @@ take_items(VALUE obj, long n)
* corresponding elements from each argument.
*
* This generates a sequence of <code>ary.size</code> _n_-element arrays,
- * where _n_ is one more that the count of arguments.
+ * where _n_ is one more than the count of arguments.
*
* If the size of any argument is less than the size of the initial array,
* +nil+ values are supplied.