From 67803b69e9cd28aed4058928e09d79d4adf89466 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 31 Dec 2007 06:43:32 +0000 Subject: fix typos. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enum.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'enum.c') diff --git a/enum.c b/enum.c index 4e3ff927d..7a88b0698 100644 --- a/enum.c +++ b/enum.c @@ -1112,8 +1112,8 @@ minmax_ii(VALUE i, VALUE *memo) * enum.minmax => [min,max] * enum.minmax {|a,b| block } => [min,max] * - * Returns two elements array which contains the mininum and the - * maxinum value in the enumerable. The first form assumes all + * Returns two elements array which contains the minimum and the + * maximum value in the enumerable. The first form assumes all * objects implement Comparable; the second uses the * block to return a <=> b. * @@ -1255,7 +1255,7 @@ minmax_by_i(VALUE i, VALUE *memo, int argc, VALUE *argv) * enum.minmax_by {| obj| block } => [min, max] * * Returns two elements array array containing the objects in - * enum that gives the minmum and maximum values respectively + * enum that gives the minimum and maximum values respectively * from the given block. * * a = %w(albatross dog horse) -- cgit