summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--array.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 05f3bdec32..b452bd47de 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jun 24 02:45:51 2013 Zachary Scott <zachary@zacharyscott.net>
+
+ * array.c (rb_ary_zip): typo by @PragTob [Fix GH-337]
+ https://github.com/ruby/ruby/pull/337
+
Mon Jun 24 02:42:01 2013 Zachary Scott <zachary@zacharyscott.net>
* win32/README.win32: grammar typo by @blankenshipz [Fix GH-334]
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.