Skip to content

Commit

Permalink
rdoc update.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
akr committed Mar 13, 2010
1 parent dc60758 commit ad690e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions enum.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ad690e9

Please sign in to comment.