summaryrefslogtreecommitdiff
path: root/enum.c
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-24 14:23:51 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-24 14:23:51 +0000
commit0dba38026aec845db9868a114c48819bc7254fea (patch)
treecc36bb6f09eed532e7208162efe68a00d0815c6e /enum.c
parent14b9d47ae07e3c1aa5dd88d4dc24639c9d99240e (diff)
* enum.c (enum_one, enum_take_while, enum_drop_while): fix documents.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15221 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
-rw-r--r--enum.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/enum.c b/enum.c
index 917fe7486d..ee392ff737 100644
--- a/enum.c
+++ b/enum.c
@@ -863,7 +863,8 @@ one_iter_i(VALUE i, VALUE *memo)
* true.
*
* %w{ant bear cat}.one? {|word| word.length == 4} #=> true
- * %w{ant bear cat}.one? {|word| word.length >= 4} #=> false
+ * %w{ant bear cat}.one? {|word| word.length > 4} #=> false
+ * %w{ant bear cat}.one? {|word| word.length < 4} #=> false
* [ nil, true, 99 ].one? #=> false
* [ nil, true, false ].one? #=> true
*
@@ -1223,7 +1224,7 @@ enum_max_by(VALUE obj)
rb_block_call(obj, id_each, 0, 0, max_by_i, (VALUE)memo);
return memo[1];
}
-
+
static VALUE
minmax_by_i(VALUE i, VALUE *memo, int argc, VALUE *argv)
{
@@ -1484,7 +1485,7 @@ take_while_i(VALUE i, VALUE *ary, int argc, VALUE *argv)
* then stops iterating and returns an array of all prior elements.
*
* a = [1, 2, 3, 4, 5, 0]
- * a.take {|i| i < 3 } # => [1, 2]
+ * a.take_while {|i| i < 3 } # => [1, 2]
*
*/
@@ -1556,7 +1557,7 @@ drop_while_i(VALUE i, VALUE *args, int argc, VALUE *argv)
* containing the remaining elements.
*
* a = [1, 2, 3, 4, 5, 0]
- * a.drop {|i| i < 3 } # => [3, 4, 5, 0]
+ * a.drop_while {|i| i < 3 } # => [3, 4, 5, 0]
*
*/