From f46bbb2e99b8c1df6a62756967b40de36039916b Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 29 Mar 2021 11:35:38 +0900 Subject: [PATCH] [DOC] Improve an example of Array#count comparison [ci skip] --- array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array.c b/array.c index 7c84bbaebf..be744e2983 100644 --- a/array.c +++ b/array.c @@ -6094,7 +6094,7 @@ rb_ary_compact(VALUE ary) * [].count # => 0 * * With argument +obj+, returns the count of elements == to +obj+: - * [0, 1, 2, 0].count(0) # => 2 + * [0, 1, 2, 0.0].count(0) # => 2 * [0, 1, 2].count(3) # => 0 * * With no argument and a block given, calls the block with each element;