Bug #5425
closedImproves Array's uniq/uniq! example
Description
Updates examples on uniq and uniq! with a more cleaner case. Changes wording to refer a block is possible.
Files
Updated by Eregon (Benoit Daloze) about 13 years ago
There is a typo in the example for uniq:
b.uniq!{ ...
Also, the added description how to pass a block should be the same in uniq and uniq! (I prefer the one of uniq!).
Thanks for documenting in sentences this behavior.
Updated by alvaropereyra (Alvaro Pereyra Rabanal) about 13 years ago
- File 0001-Improves-array-content-for-some-methods-and-examples.patch 0001-Improves-array-content-for-some-methods-and-examples.patch added
Thanks Benoit. I've fixed that typo and used the same explanation for both uniq and uniq!. Also made some other changes to other sections on the Array.
Updated by drbrain (Eric Hodel) about 13 years ago
Please watch for trailing whitespace in your patches.
Updated by drbrain (Eric Hodel) about 13 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r33453.
Alvaro, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
- array.c (rb_ary_initialize): Improve explanation of Array.new
parameters. Patch by Alvaro Pereyra Rabanal. [Ruby 1.9 - Bug #5425] - array.c (rb_ary_s_try_convert): Fix typo (try => tries)
- array.c (rb_ary_rindex): Add spacing for block.
- array.c (rb_ary_uniq_bang): Describe block
- array.c (rb_ary_uniq): ditto
Updated by alvaropereyra (Alvaro Pereyra Rabanal) about 13 years ago
Eric Hodel wrote:
Please watch for trailing whitespace in your patches.
Will do. Sorry for that. The idea is to ease your work, not burden it :P.