summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-08 09:57:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-08 09:57:23 +0000
commit5133bfad5df57c3399d1ec13a33e944d90fd613b (patch)
treedad9826991e9c0fbc46f3265d5410678e17aa327
parent1616dcb16ef34ebf4ffc2167292f9a779f3e121e (diff)
enum.c: [DOC] tally does not take a block
[Feature #11076] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67039 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--enum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enum.c b/enum.c
index 5a30ac2a98..d3df6e5b94 100644
--- a/enum.c
+++ b/enum.c
@@ -967,7 +967,7 @@ tally_i(RB_BLOCK_CALL_FUNC_ARGLIST(i, hash))
* elements and the values are numbers of elements in the collection
* that correspond to the key.
*
- * (1..6).tally { |i| i%3 } #=> {0=>2, 1=>2, 2=>2}
+ * (1..6).tally #=> {1=>1, 2=>1, 3=>1, 4=>1, 5=>1, 6=>1}
*
*/