summaryrefslogtreecommitdiff
path: root/enum.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-13 16:40:27 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-03-13 16:40:27 +0000
commitad690e96cf0d5276548686df8e7fac12ec598d0f (patch)
tree699d25b78a877f2c5de4297df1fb201361d79d7d /enum.c
parentdc6075844d95c40001a0ec6ef4f8af19c0da58d9 (diff)
rdoc update.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
-rw-r--r--enum.c6
1 files 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 <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