aboutsummaryrefslogtreecommitdiffstats
path: root/array.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-03-29 11:35:38 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-03-29 11:35:38 +0900
commitf46bbb2e99b8c1df6a62756967b40de36039916b (patch)
tree5da58d9afb5adabba131216b2f6a15fddd8c8091 /array.c
parent875c85a8bdca6cc2c7d0a26291ec4a6b2647b195 (diff)
downloadruby-f46bbb2e99b8c1df6a62756967b40de36039916b.tar.gz
[DOC] Improve an example of Array#count comparison [ci skip]
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
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 <tt>==</tt> 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;