summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-10 17:46:03 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-10 17:46:03 +0000
commitca42d13e850de4e2c5c1864feae6dcc534e4ca16 (patch)
tree3db4391d6d4d5e917afd4d835cac5210e84ba8de /array.c
parent2c5d6bae4d62e654e841468f1b1c2318439958d6 (diff)
merge revision(s) 34535:
* array.c: Fix rdoc for Array#select! patched by b t [ruby-core:42478] [Bug #5998] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34537 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 0bb692aad7..64647c3044 100644
--- a/array.c
+++ b/array.c
@@ -2339,7 +2339,7 @@ rb_ary_select(VALUE ary)
/*
* call-seq:
- * ary.select! {|item| block } -> new_ary or nil
+ * ary.select! {|item| block } -> ary or nil
* ary.select! -> an_enumerator
*
* Invokes the block passing in successive elements from
@@ -4424,7 +4424,7 @@ rb_ary_repeated_combination(VALUE ary, VALUE num)
* ary.product(other_ary, ...) -> new_ary
* ary.product(other_ary, ...) { |p| block } -> ary
*
- * Returns an array of all combinations of elements from all arrays,
+ * Returns an array of all combinations of elements from all arrays.
* The length of the returned array is the product of the length
* of +self+ and the argument arrays.
* If given a block, <i>product</i> will yield all combinations