From 14f54b97c75d4ac9355fef82b7e749a7aa632e47 Mon Sep 17 00:00:00 2001 From: knu Date: Thu, 29 May 2008 13:50:59 +0000 Subject: Fix a typo. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array.c b/array.c index 07a5e5f3e..d452eade3 100644 --- a/array.c +++ b/array.c @@ -2751,7 +2751,7 @@ rb_ary_compact(VALUE ary) * array.count { |item| block } -> int * * Returns the number of elements which equals to obj. - * If a block is given, counts tthe number of elements yielding a true value. + * If a block is given, counts the number of elements yielding a true value. * * ary = [1, 2, 4, 2] * ary.count(2) # => 2 -- cgit