From 3569c6c3a611a5e0ed8b84e1dad27f0a31568d80 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 16 Jul 2013 09:50:11 +0000 Subject: array.c: fix typo * array.c (rb_ary_count): [DOC] fix typo. Array#count uses ==, not ===. a question at asakusa.rb ML. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42003 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'array.c') diff --git a/array.c b/array.c index 215f6fedb9..13a2c6124d 100644 --- a/array.c +++ b/array.c @@ -4113,7 +4113,7 @@ rb_ary_compact(VALUE ary) * Returns the number of elements. * * If an argument is given, counts the number of elements which equal +obj+ - * using ===. + * using ==. * * If a block is given, counts the number of elements for which the block * returns a true value. -- cgit v1.2.3