summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-14 04:06:52 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-14 04:06:52 +0000
commitd952e330032662b0adba77f20a13715a1bc0f16e (patch)
treebd8a6fb7fd47d3362a8afa67a51c55ee7a394cb6 /array.c
parentb88dfa10b5be5147c7204dee44ed39880254fd88 (diff)
* array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c,
process.c, re.c, string.c: typos in RDoc comments. [ruby-core:02783] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6158 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 0ed7590cd4..18d4b02bdd 100644
--- a/array.c
+++ b/array.c
@@ -2042,7 +2042,7 @@ rb_ary_delete_if(ary)
* <i>self</i> with corresponding elements from each argument. This
* generates a sequence of <code>self#size</code> <em>n</em>-element
* arrays, where <em>n</em> is one more that the count of arguments. If
- * the size of any arguemnt is less than <code>enumObj#size</code>,
+ * the size of any argument is less than <code>enumObj#size</code>,
* <code>nil</code> values are supplied. If a block given, it is
* invoked for each output array, otherwise an array of arrays is
* returned.
@@ -2384,7 +2384,7 @@ rb_ary_times(ary, times)
* comparing _obj_ with the first element of each contained array
* using obj.==.
* Returns the first contained array that matches (that
- * is, the first assoc}iated array,
+ * is, the first associated array),
* or +nil+ if no match is found.
* See also Array.rassoc.
*