1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

rdoc update.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2010-03-13 16:40:27 +00:00
parent dc6075844d
commit ad690e96cf

6
enum.c
View file

@ -1334,7 +1334,7 @@ min_by_i(VALUE i, VALUE *memo, int argc, VALUE *argv)
/*
* call-seq:
* enum.min_by {| obj| block } => obj
* enum.min_by {|obj| block } => obj
*
* Returns the object in <i>enum</i> that gives the minimum
* value from the given block.
@ -1377,7 +1377,7 @@ max_by_i(VALUE i, VALUE *memo, int argc, VALUE *argv)
/*
* call-seq:
* enum.max_by {| obj| block } => obj
* enum.max_by {|obj| block } => obj
*
* Returns the object in <i>enum</i> that gives the maximum
* value from the given block.
@ -1471,7 +1471,7 @@ minmax_by_i(VALUE i, VALUE _memo, int argc, VALUE *argv)
/*
* call-seq:
* enum.minmax_by {| obj| block } => [min, max]
* enum.minmax_by {|obj| block } => [min, max]
*
* Returns two elements array array containing the objects in
* <i>enum</i> that gives the minimum and maximum values respectively