summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorRicardo Trindade <ricardo.trindade743@gmail.com>2025-10-07 21:40:36 +0200
committerAlan Wu <XrXr@users.noreply.github.com>2025-10-07 18:54:34 -0400
commit42ba82424d908c290a4a34ced8853f0a403b734b (patch)
tree6c0d213cb7a050dc59d53190ef96f8f8504c4385 /array.c
parent9a75c05b5ab7eaee9e3db14b5651034bb414aa5e (diff)
Fix typo in comment in array#zip docs
Duplicate the was found in the documentation
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 2ba95bef18..378da150ee 100644
--- a/array.c
+++ b/array.c
@@ -4569,7 +4569,7 @@ take_items(VALUE obj, long n)
* [:c3, :b3, :a3]]
*
* For an *object* in *other_arrays* that is not actually an array,
- * forms the the "other array" as <tt>object.to_ary</tt>, if defined,
+ * forms the "other array" as <tt>object.to_ary</tt>, if defined,
* or as <tt>object.each.to_a</tt> otherwise.
*
* Related: see {Methods for Converting}[rdoc-ref:Array@Methods+for+Converting].