From ad690e96cf0d5276548686df8e7fac12ec598d0f Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 13 Mar 2010 16:40:27 +0000 Subject: [PATCH] rdoc update. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enum.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/enum.c b/enum.c index 0732695650..8b9f3b36f3 100644 --- a/enum.c +++ b/enum.c @@ -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 enum 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 enum 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 * enum that gives the minimum and maximum values respectively