diff options
author | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-10-07 23:55:41 +0000 |
---|---|---|
committer | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-10-07 23:55:41 +0000 |
commit | 82f1f640ec4a59bd77cde7fee509080828406835 (patch) | |
tree | 384ba4b10c0d9f19f659dfcdb5d065ea3a1c567c /enum.c | |
parent | ee1acd6a83d1802c272802c69db5e9965ea9ead6 (diff) | |
download | bundler-82f1f640ec4a59bd77cde7fee509080828406835.tar.gz |
* enum.c (group_by): Improve group_by description. Patch by b t. [#5411]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
-rw-r--r-- | enum.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -658,12 +658,12 @@ group_by_i(VALUE i, VALUE hash, int argc, VALUE *argv) * enum.group_by -> an_enumerator * * Groups the collection by result of the block. Returns a hash where the - * keys are the evaluated result from the block and values the values are - * arrays of elements in the collection that corresponding to the key. + * keys are the evaluated result from the block and the values are + * arrays of elements in the collection that correspond to the key. * * If no block is given an enumerator is returned. * - * (1..6).group_by {|i| i%3} #=> {0=>[3, 6], 1=>[1, 4], 2=>[2, 5]} + * (1..6).group_by { |i| i%3 } #=> {0=>[3, 6], 1=>[1, 4], 2=>[2, 5]} * */ |