From b3a65c883aa2351865c3502a0e2d85ed8febcf75 Mon Sep 17 00:00:00 2001 From: mame Date: Thu, 17 Mar 2016 12:52:47 +0000 Subject: * array.c, enum.c: make rdoc format consistent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enum.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'enum.c') diff --git a/enum.c b/enum.c index 41243cc79e..a459c812f2 100644 --- a/enum.c +++ b/enum.c @@ -1543,11 +1543,11 @@ min_ii(RB_BLOCK_CALL_FUNC_ARGLIST(i, args)) /* * call-seq: * enum.min -> obj - * enum.min {| a,b | block } -> obj + * enum.min { |a, b| block } -> obj * enum.min(n) -> array - * enum.min(n) {| a,b | block } -> array + * enum.min(n) { |a, b| block } -> array * - * Returns the object in enum with the minimum value. The + * Returns the object in _enum_ with the minimum value. The * first form assumes all objects implement Comparable; * the second uses the block to return a <=> b. * @@ -1635,10 +1635,10 @@ max_ii(RB_BLOCK_CALL_FUNC_ARGLIST(i, args)) /* * call-seq: - * enum.max -> obj - * enum.max { |a, b| block } -> obj - * enum.max(n) -> obj - * enum.max(n) {|a,b| block } -> obj + * enum.max -> obj + * enum.max { |a, b| block } -> obj + * enum.max(n) -> array + * enum.max(n) { |a, b| block } -> array * * Returns the object in _enum_ with the maximum value. The * first form assumes all objects implement Comparable; -- cgit v1.2.3