Project

General

Profile

Bug #10536

Updated by nobu (Nobuyoshi Nakada) over 9 years ago

`collect` ```collect``` is shown in the example section instead of `map` ```map``` 

 This is fully the case for the 2.0 doc (http://ruby-doc.org/core-2.0/Enumerable.html#method-i-map) and partially the case for the 2.1 doc (http://ruby-doc.org/core-2.1.0/Enumerable.html#method-i-map).   

 For example, from http://ruby-doc.org/core-2.1.0/Enumerable.html#method-i-map: 

 ~~~ruby 
 ~~~ 
 (1..4).map { |i| i*i }        #=> [1, 4, 9, 16] 
 (1..4).collect { "cat"    }     #=> ["cat", "cat", "cat", "cat"] 
 ~~~

Back